blob: 83c199e2dd54c4e21b2e0b68f34000e174fa1463 (
plain)
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
|
cmake_minimum_required(VERSION 3.16)
project(custom-appman LANGUAGES CXX)
if(NOT DEFINED INSTALL_EXAMPLESDIR)
set(INSTALL_EXAMPLESDIR "examples")
endif()
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/applicationmanager/custom-appman")
find_package(Qt6 COMPONENTS AppManMainPrivate)
qt_standard_project_setup(REQUIRES 6.5)
qt_add_executable(custom-appman WIN32
custom-appman.cpp
)
# This define flags us as an "appman" and allows us to link against the AppMan's private libraries
target_compile_definitions(custom-appman PRIVATE AM_COMPILING_APPMAN)
target_compile_definitions(custom-appman PRIVATE
QT_MESSAGELOGCONTEXT
)
target_link_libraries(custom-appman PRIVATE
Qt::AppManMainPrivate
)
install(TARGETS custom-appman
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)
|