summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/staticLibraryCycle/CMakeLists.txt
blob: 144a435f41ae63ba481bf4f3bd9a2fecd8591245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Test AUTOMOC and AUTORCC on source files with the same name
# but in different subdirectories

set(CMAKE_AUTOMOC ON)

# Cyclic static libraries
add_library(slc_a STATIC a.cpp)
target_link_libraries(slc_a ${QT_LIBRARIES} slc_b)

add_library(slc_b STATIC b.cpp)
target_link_libraries(slc_b ${QT_LIBRARIES} slc_c)

add_library(slc_c STATIC c.cpp)
target_link_libraries(slc_c ${QT_LIBRARIES} slc_a)

add_executable(slc main.cpp)
target_link_libraries(slc ${QT_LIBRARIES} slc_a)