-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHalo4Profile.pro
56 lines (44 loc) · 963 Bytes
/
Halo4Profile.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
54
55
56
TARGET = Halo4Profile
CONFIG(debug, debug|release) {
#TEMPLATE = app
CONFIG += plugin debug
#uncomment the below to build the plugin for debug mode
TEMPLATE = lib
HEADERS += \
DebuggingClass.h
SOURCES += \
main.cpp \
DebuggingClass.cpp
}
CONFIG(release, debug|release) {
TEMPLATE = lib
CONFIG += plugin release
}
# flags
QMAKE_CXXFLAGS += -fpermissive
# xbox internals
INCLUDEPATH += $$PWD/include
LIBS += -L$$PWD/include/ -lXboxInternals
# botan
win32 {
LIBS += -LC:/botan/ -lbotan-1.10
INCLUDEPATH += C:/botan/include
}
macx|unix {
INCLUDEPATH += /usr/local/include/botan-1.10
LIBS += /usr/local/lib/libbotan-1.10.a
}
# plugin information
VERSION = 1.0.0
INSTALLS += target
HEADERS += \
Halo4ProfileDialog.h \
igpdmodder.h \
BitArray.h
SOURCES += \
Halo4ProfileDialog.cpp \
BitArray.cpp
FORMS += \
Halo4ProfileDialog.ui
RESOURCES += \
resources.qrc