forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqt-gui.pro
37 lines (26 loc) · 877 Bytes
/
qt-gui.pro
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
QT += quick gui core qml widgets testlib dbus
HEADERS += $$files(src/*.hpp)\
$$files(src/markdownconverter/*.h, true)\
SOURCES += $$files(src/*.cpp,true)\
CONFIG += qml_debug
QMAKE_CXXFLAGS += -std=c++11
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
RESOURCES += \
resources.qrc
i18n.qrc
OTHER_FILES += $$PWD/qml/*.qml\
$$PWD/qml/*.js
SUBDIRS += \
unittest/unittest.pro \
unix: LIBS += -L/usr/local/lib/ -lelektra
unix: LIBS += -L/usr/local/lib/ -lelektratools
unix: LIBS += -L/usr/local/lib/ -lelektra-ease
unix: LIBS += -L/usr/local/lib/ -lmarkdown
INCLUDEPATH += /usr/local/include/elektra
INCLUDEPATH += ../../libtools/include/
INCLUDEPATH += ../../libtools/include/merging
INCLUDEPATH += ../../include/
INCLUDEPATH += src/markdownconverter