forked from marek-cel/mscsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_fdm_matrix4x4.pro
53 lines (33 loc) · 1.17 KB
/
test_fdm_matrix4x4.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
QT += testlib
QT -= gui
################################################################################
CONFIG += console
CONFIG -= app_bundle
CONFIG += fdm_test
TEMPLATE = app
################################################################################
TARGET = test_fdm_matrix4x4
################################################################################
DEFINES += QT_DEPRECATED_WARNINGS
################################################################################
INCLUDEPATH += . ../..
win32: INCLUDEPATH += \
$(OSG_ROOT)/include/ \
$(OSG_ROOT)/include/libxml2
unix: INCLUDEPATH += \
/usr/include/libxml2
################################################################################
win32: LIBS += \
-L$(OSG_ROOT)/lib \
-llibxml2
unix: LIBS += \
-L/lib \
-L/usr/lib \
-lxml2
################################################################################
include(../../fdm/fdm.pri)
################################################################################
SOURCES += \
test_fdm_matrix4x4.cpp
################################################################################
DEFINES += SRCDIR=\\\"$$PWD/\\\"