You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
476 B
18 lines
476 B
# 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)
|