summaryrefslogtreecommitdiffstats
path: root/commoninclude.pri
blob: 83eb886d0d4edc585511a055bfd941203a7c7f8f (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
include($$PWD/commonplatform.pri)

contains(TEMPLATE, lib) {
    load(qt_helper_lib)
    # qt_helper_lib assumes non-qt lib, so it clears qt from config - reset that
    CONFIG += qt exceptions
}
QT += core gui openglextensions

DEFINES += COMPILED_FROM_DSP \
    QT3DSDM_USE_NVLOG QT3DSDM_META_DATA_NO_SIGNALS

INCLUDEPATH += \
    $$PWD/src \
    $$PWD/src/datamodel \
    $$PWD/src/runtime \
    $$PWD/src/system \
    $$PWD/src/engine \
    $$PWD/src/foundation \
    $$PWD/src/render \
    $$PWD/src/render/gl2 \
    $$PWD/src/render/gl3 \
    $$PWD/src/render/glg \
    $$PWD/src/uipparser \
    $$PWD/src/state \
    $$PWD/src/event \
    $$PWD/src/viewer \
    $$PWD/src/viewer/perflog \
    $$PWD/src/importlib \
    $$PWD/src/dm \
    $$PWD/src/dm/systems \
    $$PWD/src/dm/systems/cores \
    $$PWD/src/3rdparty/EASTL/UnknownVersion/include \
    $$PWD/src/3rdparty/platformspecific/$$PlatformSpecificDir/PlatformLibs \
    $$PWD/src/qmlstreamer \
    $$PWD/src/runtimerender \
    $$PWD/src/runtimerender/graphobjects \
    $$PWD/src/runtimerender/resourcemanager \

# TODO: Investigate whether these can be moved to commonplatform
win32-msvc {
    CONFIG += nostrictstrings
    QMAKE_CXXFLAGS += /EHsc /GA
    QMAKE_CFLAGS += /EHsc /GA
}

win32 {
INCLUDEPATH += \
    $$PWD/src/platformspecific/windows/libs \
    $$PWD/src/3rdparty/platformspecific/Windows/Qt3DSLibs
}

linux|qnx {
QMAKE_CXXFLAGS += -fpermissive
QMAKE_CFLAGS += -fpermissive
INCLUDEPATH += \
    $$PWD/src/foundation/linux \
    $$PWD/src/platformspecific/linux/libs \
    $$PWD/src/3rdparty/platformspecific/Linux/Qt3DSLibs
}

integrity {
INCLUDEPATH += \
    $$PWD/src/foundation/linux \
    $$PWD/src/platformspecific/linux/libs \
    $$PWD/src/3rdparty/platformspecific/Linux/Qt3DSLibs
}

macos {
INCLUDEPATH += \
  $$PWD/src/3rdparty/platformspecific/Macos/Qt3DSLibs \
  $$PWD/src/platformspecific/macos/libs

}

android {
INCLUDEPATH += \
    $$PWD/src/platformspecific/android/jni/libs/nv_thread \
    $$PWD/src/3rdparty/platformspecific/Android/jni/Qt3DSLibs \
    $$PWD/src/3rdparty/platformspecific/Android/jni
}