summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutomoc/CMakeLists.txt
blob: 855fcf0f5b76a1ca8c6afd2ef882af328dc4b1b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cmake_minimum_required(VERSION 2.8)

project(QtAutomoc)

find_package(Qt4 REQUIRED)

include(UseQt4)

include_directories(${CMAKE_CURRENT_BINARY_DIR})

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 two library targets, each requiring automoc:
add_library(codeeditorLib STATIC codeeditor.cpp)

add_library(privateSlot OBJECT private_slot.cpp)

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} )