dc8fa99b2b
Forward port of fix for http://cmake.org/Bug/view.php?id=12554 Test fails before and passes after. Change-Id: I7a3ab2369cb3095c63f9e2a3e604088ebdcc2465 Reviewed-by: Clinton Stimpson <clinton@elemtech.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
19 lines
486 B
CMake
19 lines
486 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project("pass(needsquoting)6")
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
find_package(Qt5Gui REQUIRED)
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
include_directories(${Qt5Core_INCLUDE_DIRS} ${Qt5Gui_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS})
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
qt5_wrap_cpp(moc_files mywidget.h)
|
|
qt5_wrap_ui(ui_files mywidget.ui)
|
|
|
|
add_executable(mywidget mywidget.cpp ${moc_files} ${ui_files})
|
|
target_link_libraries(mywidget ${Qt5Widgets_LIBRARIES})
|