summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2013-01-11 09:40:13 (GMT)
committerYury G. Kudryashov <urkud.urkud@gmail.com>2013-01-15 03:45:46 (GMT)
commit0e35cac3d06bb89faa89ed4bf425f0978e828321 (patch)
treedeb5632abb1fa7eab1bba8fd02ceaa75f97ac959 /Tests
parentcf3faacad2aff9ac3c9f2d407b1823a75939160e (diff)
downloadCMake-0e35cac3d06bb89faa89ed4bf425f0978e828321.zip
CMake-0e35cac3d06bb89faa89ed4bf425f0978e828321.tar.gz
CMake-0e35cac3d06bb89faa89ed4bf425f0978e828321.tar.bz2
Automoc: add OBJECT library to QtAutomoc test
Diffstat (limited to 'Tests')
-rw-r--r--Tests/QtAutomoc/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/Tests/QtAutomoc/CMakeLists.txt b/Tests/QtAutomoc/CMakeLists.txt
index 5e3686d..855fcf0 100644
--- a/Tests/QtAutomoc/CMakeLists.txt
+++ b/Tests/QtAutomoc/CMakeLists.txt
@@ -13,11 +13,14 @@ add_definitions(-DFOO -DSomeDefine="Barx")
# enable relaxed mode so automoc can handle all the special cases:
set(CMAKE_AUTOMOC_RELAXED_MODE TRUE)
-# create an executable and a library target, both requiring automoc:
+# create an executable and two library targets, each requiring automoc:
add_library(codeeditorLib STATIC codeeditor.cpp)
-add_executable(foo main.cpp calwidget.cpp foo.cpp blub.cpp bar.cpp abc.cpp xyz.cpp yaf.cpp private_slot.cpp)
+add_library(privateSlot OBJECT private_slot.cpp)
-set_target_properties(foo codeeditorLib PROPERTIES AUTOMOC TRUE)
+add_executable(foo main.cpp calwidget.cpp foo.cpp blub.cpp bar.cpp abc.cpp
+ xyz.cpp yaf.cpp $<TARGET_OBJECTS:privateSlot>)
+
+set_target_properties(foo codeeditorLib privateSlot PROPERTIES AUTOMOC TRUE)
target_link_libraries(foo codeeditorLib ${QT_LIBRARIES} )