summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/custom-appman/custom-appman.pro
blob: f6f4e294efbee8e711f2dd716f1e597d4febc624 (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
TEMPLATE = app
TARGET   = custom-appman

CONFIG += c++11 link_pkgconfig exceptions console
CONFIG -= app_bundle qml_debug

DEFINES += QT_MESSAGELOGCONTEXT

# This define flags us as an "appman" and allows us to link against the AppMan's private libraries
DEFINES *= AM_COMPILING_APPMAN

QT = appman_main-private

SOURCES = custom-appman.cpp

OTHER_FILES += \
    doc/src/*.qdoc \
    doc/images/*.png \

target.path = $$[QT_INSTALL_EXAMPLES]/applicationmanager/custom-appman
INSTALLS += target

example_sources.path = $$target.path
example_sources.files = $SOURCES doc
INSTALLS += example_sources