[go: up one dir, main page]

Menu

[58d196]: / test / test.pro  Maximize  Restore  History

Download this file

32 lines (24 with data), 713 Bytes

 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
#-------------------------------------------------
# This file is part of the Restad project
# https://sourceforge.net/projects/restad/
#-------------------------------------------------
TEMPLATE = app
TARGET = test
include(../global.pri)
include(../src.pri)
# CuteTest
unix {
CUTE_TEST_INC = /home/yoann/cutetest/include
CUTE_TEST_LIB_DIR = /home/yoann/cutetest/lib
CUTE_TEST_LIB = CuteTestd
}
!isEmpty(CUTE_TEST_INC) { INCLUDEPATH += $$CUTE_TEST_INC }
!isEmpty(CUTE_TEST_LIB_DIR) { LIBS += -L$$CUTE_TEST_LIB_DIR }
LIBS += -l$$CUTE_TEST_LIB
INCLUDEPATH += $$DIR_SRC
SOURCES += test.cpp
HEADERS += \
global.hpp \
test_optionmanager.hpp \
test_global.hpp \
test_commands.hpp