blob: 826caf868bd94b214f5d32e478da770dac824596 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
TEMPLATE = lib
TARGET = QtAppManMain
MODULE = appman_main
load(am-config)
QT = core network qml core-private
enable-widgets:QT *= widgets
!headless:QT *= gui quick
qtHaveModule(pssdp):QT *= pssdp
qtHaveModule(pshellserver):QT *= pshellserver
QT *= \
appman_common-private \
appman_application-private \
appman_manager-private \
appman_package-private \
appman_installer-private \
appman_notification-private \
appman_monitor-private \
appman_shared_main-private \
appman_intent_server-private \
!headless:QT *= appman_window-private
!disable-external-dbus-interfaces:qtHaveModule(dbus):QT *= dbus appman_dbus-private
CONFIG *= static internal_module
win32:LIBS += -luser32
DEFINES += AM_BUILD_DIR=\\\"$$BUILD_DIR\\\"
HEADERS += \
configuration.h \
main.h \
defaultconfiguration.h \
!headless:HEADERS += \
windowframetimer.h \
SOURCES += \
main.cpp \
configuration.cpp \
defaultconfiguration.cpp \
!headless:SOURCES += \
windowframetimer.cpp \
load(qt_module)
|