008a1573af
Change-Id: I4a7b96d33417a15d79f3932ced91bee58915c83f Reviewed-by: Alexander Neundorf <neundorf@kde.org> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
18 lines
398 B
CMake
18 lines
398 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pass3)
|
|
|
|
# The module finds its dependencies
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
include_directories(${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})
|