Skip to content

Instantly share code, notes, and snippets.

@Stolas
Created March 19, 2016 11:28
Show Gist options
  • Save Stolas/f8fcda20fb31a31208fe to your computer and use it in GitHub Desktop.
Save Stolas/f8fcda20fb31a31208fe to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.0.2)
project(PROJECT_NAME)
find_package(Qt5Widgets)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTO_MOC ON)
qt5_wrap_ui(UI_HEADERS mainwindow.ui)
qt5_wrap_cpp(MOC_SRC mainwindow.h)
add_executable(EXECUTABLE_NAME
main.cpp
mainwindow.cpp
${MOC_SRC}
${UI_HEADERS}
)
target_link_libraries(EXECUTABLE_NAME Qt5::Widgets)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment