mirror of
https://github.com/reactos/CMake.git
synced 2025-01-02 00:39:17 +00:00
30fd8e603a
including moc_xyz.cpp in abc.cpp should run moc on xyz.h (and include the file in abc.cpp) Alex
21 lines
504 B
CMake
21 lines
504 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(QtAutomoc)
|
|
|
|
find_package(Qt4 REQUIRED)
|
|
|
|
include(UseQt4)
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
add_definitions(-DFOO)
|
|
|
|
# create an executable and a library target, both 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)
|
|
|
|
set_target_properties(foo codeeditorLib PROPERTIES AUTOMOC TRUE)
|
|
|
|
target_link_libraries(foo codeeditorLib ${QT_LIBRARIES} )
|