2011-08-16 04:10:45 +04:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
|
|
|
project(QtAutomoc)
|
|
|
|
|
|
|
|
find_package(Qt4 REQUIRED)
|
|
|
|
|
|
|
|
include(UseQt4)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
add_definitions(-DFOO)
|
|
|
|
|
2011-12-14 01:11:47 +04:00
|
|
|
# enable relaxed mode so automoc can handle all the special cases:
|
|
|
|
set(CMAKE_AUTOMOC_RELAXED_MODE TRUE)
|
|
|
|
|
2011-08-16 04:10:45 +04:00
|
|
|
# create an executable and a library target, both requiring automoc:
|
|
|
|
add_library(codeeditorLib STATIC codeeditor.cpp)
|
|
|
|
|
2011-11-23 01:26:42 +04:00
|
|
|
add_executable(foo main.cpp calwidget.cpp foo.cpp blub.cpp bar.cpp abc.cpp xyz.cpp yaf.cpp private_slot.cpp)
|
2011-08-16 04:10:45 +04:00
|
|
|
|
|
|
|
set_target_properties(foo codeeditorLib PROPERTIES AUTOMOC TRUE)
|
|
|
|
|
|
|
|
target_link_libraries(foo codeeditorLib ${QT_LIBRARIES} )
|