summaryrefslogtreecommitdiffstats
path: root/src/angle/src/common/common.pri
blob: e99080d19f32a3dd20869452dc50897e05956074 (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
include (../config.pri)

INCLUDEPATH += \
    $$ANGLE_DIR/src \
    $$ANGLE_DIR/include

LIBS = $$QMAKE_LIBS_CORE $$QMAKE_LIBS_GUI

# DirectX is included in the Windows 8 Kit, but everything else requires the DX SDK.
win32-msvc2012 {
    FXC = fxc.exe
} else {
    DX_DIR = $$(DXSDK_DIR)
    isEmpty(DX_DIR) {
        error("Cannot determine DirectX SDK location. Please set DXSDK_DIR environment variable.")
    }

    DXINC_DIR = $$quote($${DX_DIR}Include)
    contains(QT_ARCH, x86_64) {
        DXLIB_DIR = $$quote($${DX_DIR}Lib\\x64)
    } else {
        DXLIB_DIR = $$quote($${DX_DIR}Lib\\x86)
    }

    FXC = "\"$${DX_DIR}Utilities\\bin\\x86\\fxc.exe\""

    msvc {
        # Unfortunately MinGW cannot use the DirectX headers from the DX SDK because d3d11shader.h uses
        # buffer annotation macros (eg: __out, __in) which are not defined in the MinGW copy of
        # specstrings_strict.h
        INCLUDEPATH += $$DXINC_DIR

        # Similarly we want the MinGW linker to use the import libraries shipped with the compiler
        # instead of those from the SDK which cause a crash on startup.
        LIBS += -L$$DXLIB_DIR
    }
}

# Use the DEF files in release mode
msvc:CONFIG(release, debug|release) {
    QMAKE_LFLAGS += /DEF:$$ANGLE_DIR/src/$${TARGET}/$${TARGET}.def
}

HEADERS +=  \
    $$ANGLE_DIR/src/common/angleutils.h \
    $$ANGLE_DIR/src/common/debug.h \
    $$ANGLE_DIR/src/common/RefCountObject.h \
    $$ANGLE_DIR/src/common/version.h

SOURCES +=  \
    $$ANGLE_DIR/src/common/debug.cpp \
    $$ANGLE_DIR/src/common/RefCountObject.cpp