summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/custom-appman/CMakeLists.txt
blob: 2a58d8d516f32872c0183a2b6b88cd7acb998fbd (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
cmake_minimum_required(VERSION 3.16)
project(custom-appman LANGUAGES CXX)

find_package(Qt6 COMPONENTS AppManSystemUIPrivate)

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::AppManSystemUIPrivate
)

install(TARGETS custom-appman
    BUNDLE  DESTINATION .
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
)