-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
40 lines (30 loc) · 976 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cmake_minimum_required(VERSION 3.16)
project(holdmything VERSION 0.1 LANGUAGES CXX)
set(CMAKE_AUTOMOC ON)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(Qt5 COMPONENTS Quick Widgets REQUIRED)
find_package(LayerShellQt REQUIRED)
qt_add_resources(holdmything_resources
qml.qrc)
add_executable(holdmything
main.cpp
QmlFileItem.h QmlFileItem.cpp
QmlFileItemModel.h QmlFileItemModel.cpp
${holdmything_resources}
)
set_target_properties(holdmything PROPERTIES
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
MACOSX_BUNDLE TRUE
WIN32_EXECUTABLE TRUE
)
target_compile_definitions(holdmything
PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG> QT_NO_KEYWORDS=1)
target_link_libraries(holdmything
PUBLIC
Qt5::Quick
Qt5::Widgets
LayerShellQt::Interface
fm-qt
)