-
Notifications
You must be signed in to change notification settings - Fork 44
/
common.pri
31 lines (27 loc) · 1.06 KB
/
common.pri
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
exists($$PWD/../XPlaneSDK) {
XPLANE_SDK_PATH=$$PWD/../XPlaneSDK
}
exists($$(HOME)/SDK/) {
XPLANE_SDK_PATH=$$(HOME)/SDK/
}
# Build all the dataref classes as they are needed
# everywhere.
HEADERS += \
$$PWD/protocoldefs.h \
$$PWD/extplane-server/datarefprovider.h \
$$PWD/extplane-server/datarefs/dataref.h \
$$PWD/extplane-server/datarefs/floatdataref.h \
$$PWD/extplane-server/datarefs/floatarraydataref.h \
$$PWD/extplane-server/datarefs/intdataref.h \
$$PWD/extplane-server/datarefs/doubledataref.h \
$$PWD/extplane-server/datarefs/intarraydataref.h \
$$PWD/extplane-server/datarefs/datadataref.h
SOURCES += \
$$PWD/extplane-server/datarefprovider.cpp \
$$PWD/extplane-server/datarefs/dataref.cpp \
$$PWD/extplane-server/datarefs/floatdataref.cpp \
$$PWD/extplane-server/datarefs/floatarraydataref.cpp \
$$PWD/extplane-server/datarefs/intdataref.cpp \
$$PWD/extplane-server/datarefs/doubledataref.cpp \
$$PWD/extplane-server/datarefs/intarraydataref.cpp \
$$PWD/extplane-server/datarefs/datadataref.cpp