summaryrefslogtreecommitdiff
path: root/Tests/Qt4And5Automoc/CMakeLists.txt
blob: 0cc80fe73ff1d40433d0980358d3851a9a5065c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

project(Qt4And5Automoc)

find_package(Qt4 REQUIRED)
find_package(Qt5Core REQUIRED)

set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)

add_executable(qt4_exe main_qt4.cpp)
target_link_libraries(qt4_exe Qt4::QtCore)
add_executable(qt5_exe main_qt5.cpp)
target_link_libraries(qt5_exe Qt5::Core)