e838cf644f
Change-Id: Id2f57cc2f64ae25f5f84d1206035b7a2c309d1c7 Reviewed-by: Clinton Stimpson <clinton@elemtech.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
16 lines
409 B
CMake
16 lines
409 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pass5)
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
include_directories(${Qt5Core_INCLUDE_DIRS})
|
|
|
|
# Test options. The -i option removes the include "myobject.h" from the moc file
|
|
# causing a compile failure. -> Options work
|
|
qt5_wrap_cpp(moc_files myobject.h OPTIONS -i)
|
|
|
|
add_executable(myobject myobject.cpp ${moc_files})
|
|
target_link_libraries(myobject ${Qt5Core_LIBRARIES})
|