361cd9f9b2
The fPIE flag should only be used with executables. Change-Id: If799ae4a7fe2492af3aac67651659a52d365024a Reviewed-by: Alexander Neundorf <neundorf@kde.org> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
22 lines
521 B
CMake
22 lines
521 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pass3)
|
|
|
|
# The module finds its dependencies
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
include_directories(${Qt5Widgets_INCLUDE_DIRS})
|
|
|
|
add_definitions(${Qt5Core_DEFINITIONS})
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
qt5_wrap_cpp(moc_files mywidget.h)
|
|
qt5_wrap_ui(ui_files mywidget.ui)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
|
|
|
add_executable(mywidget mywidget.cpp ${moc_files} ${ui_files})
|
|
target_link_libraries(mywidget ${Qt5Widgets_LIBRARIES})
|