c455674555
Change-Id: I6858c324548373c57963b5ef137772a1f780ec78 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Clinton Stimpson <clinton@elemtech.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
21 lines
565 B
CMake
21 lines
565 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pass4)
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
include_directories(${Qt5Core_INCLUDE_DIRS})
|
|
|
|
add_definitions(${Qt5Core_DEFINITIONS})
|
|
|
|
qt5_wrap_cpp(moc_files myobject.h)
|
|
|
|
# Test options. The -binary option generates a binary to dlopen instead of
|
|
# a source file to compile. The compiler will consider it garbage when used
|
|
# in the add_executable call.
|
|
qt5_add_resources(rcc_files "pass4.qrc" OPTIONS -binary)
|
|
|
|
add_executable(myobject myobject.cpp ${moc_files} ${rcc_files})
|
|
target_link_libraries(myobject ${Qt5Core_LIBRARIES})
|