Initial commit
This commit is contained in:
commit
499f9a0e18
5 changed files with 107 additions and 0 deletions
28
CMakeLists.txt
Normal file
28
CMakeLists.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
project(tutorial_kirigami2)
|
||||
|
||||
find_package(ECM REQUIRED NO_MODULE)
|
||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
||||
|
||||
include(KDEInstallDirs)
|
||||
include(KDECMakeSettings)
|
||||
include(KDECompilerSettings NO_POLICY_SCOPE)
|
||||
|
||||
find_package(Qt${QT_MAJOR_VERSION} REQUIRED NO_MODULE COMPONENTS
|
||||
Core
|
||||
Quick
|
||||
Test
|
||||
Gui
|
||||
QuickControls2
|
||||
Widgets
|
||||
)
|
||||
|
||||
find_package(KF${QT_MAJOR_VERSION} REQUIRED COMPONENTS
|
||||
Kirigami2
|
||||
I18n
|
||||
CoreAddons
|
||||
)
|
||||
|
||||
add_subdirectory(src)
|
||||
|
||||
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
Loading…
Add table
Add a link
Reference in a new issue