80f30aa6bf
6489015 Remove an endif() followed by an if() for the same condition. e7813b1 Add a test for Qt5Automoc 27fb96b Make the QtAutomoc test compile with either Qt 4 or Qt 5
9 lines
228 B
CMake
9 lines
228 B
CMake
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
|
|
|
|
add_library(libA SHARED libA.cpp)
|
|
target_link_libraries(libA LINK_PUBLIC ${QT_QTCORE_TARGET})
|
|
generate_export_header(libA)
|