blob: 3064d57c583dc00034f124a7b06598cc030c6ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TEMPLATE = app
QT += qml quick
CONFIG += c++11
HEADERS += communication.h qlibwindowmanager.h
SOURCES += main.cpp \
communication.cpp qlibwindowmanager.cpp
RESOURCES += sample.qrc
INCLUDEPATH += $$[QT_SYSROOT]/usr/include/afb
LIBS += -lwindowmanager
#LIBS += -lsystemd
LIBS += -lafbwsc
#LIBS += -ljson-c
target.path = /usr/bin/WindowManagerSampleApp
INSTALLS += target
|