forked from cloose/CuteMarkEd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit.pro
More file actions
54 lines (45 loc) · 1.75 KB
/
unit.pro
File metadata and controls
54 lines (45 loc) · 1.75 KB
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
49
50
51
52
53
54
#
# Unit Test Project for CuteMarkEd
#
# Github : https://github.com/cloose/CuteMarkEd
#
QT += testlib
TARGET = unittest
CONFIG += console testcase
SOURCES += \
main.cpp \
completionlistmodeltest.cpp \
snippettest.cpp \
jsonsnippettranslatortest.cpp \
jsontranslatorfactorytest.cpp \
slidelinemappingtest.cpp \
snippetcollectiontest.cpp \
dictionarytest.cpp \
yamlheadercheckertest.cpp
HEADERS += \
completionlistmodeltest.h \
snippettest.h \
jsonsnippettranslatortest.h \
jsontranslatorfactorytest.h \
slidelinemappingtest.h \
snippetcollectiontest.h \
dictionarytest.h \
yamlheadercheckertest.h
target.CONFIG += no_default_install
#
# JSON configuration library
#
INCLUDEPATH += $$PWD/../../libs/jsonconfig
##################################################
# Use internal static library: app-static
##################################################
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../app-static/release/ -lapp-static
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../app-static/debug/ -lapp-static
else:unix: LIBS += -L$$OUT_PWD/../../app-static/ -lapp-static
INCLUDEPATH += $$PWD/../../app-static
DEPENDPATH += $$PWD/../../app-static
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../app-static/release/libapp-static.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../app-static/debug/libapp-static.a
else:win32-msvc*:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../app-static/release/app-static.lib
else:win32-msvc*:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../app-static/debug/app-static.lib
else:unix: PRE_TARGETDEPS += $$OUT_PWD/../../app-static/libapp-static.a