summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/objectLibrary/CMakeLists.txt
blob: 9b29a4075cdba83818665c53d41b739b0509db60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)

# Object library a defined in a subdirectory
add_subdirectory(a)

# Object library b defined locally
include_directories(b)
add_library(b OBJECT b/classb.cpp)
target_compile_features(b PRIVATE ${QT_COMPILE_FEATURES})

# Executable with OBJECT library generator expressions
add_executable(someProgram main.cpp $<TARGET_OBJECTS:a> $<TARGET_OBJECTS:b>)
target_link_libraries(someProgram ${QT_LIBRARIES})