-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleelagtp.pro
47 lines (38 loc) · 1002 Bytes
/
leelagtp.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
QT_REQ_MAJOR_VERSION = 5
QT_REQ_MINOR_VERSION = 3
QT_REQ_VERSION = "$$QT_REQ_MAJOR_VERSION"."$$QT_REQ_MINOR_VERSION"
lessThan(QT_MAJOR_VERSION, $$QT_REQ_MAJOR_VERSION) {
error(Minimum supported Qt version is $$QT_REQ_VERSION!)
}
equals(QT_MAJOR_VERSION, $$QT_REQ_MAJOR_VERSION):lessThan(QT_MINOR_VERSION, $$QT_REQ_MINOR_VERSION) {
error(Minimum supported Qt version is $$QT_REQ_VERSION!)
}
QT += core gui widgets
TARGET = leelagtp
CONFIG += c++14
RC_FILE += LeelaGTP/leelagtp.rc
TEMPLATE = app
DEFINES += LEELA_GTP
SOURCES += main.cpp \
Game.cpp \
Worker.cpp \
Order.cpp \
Job.cpp \
Management.cpp \
LeelaGTP/LeelaGTP.cpp \
LeelaGTP/MovLancifolium.cpp \
LeelaGTP/GTPConfig.cpp
HEADERS += \
Game.h \
Worker.h \
Job.h \
Order.h \
Result.h \
Management.h \
LeelaGTP/LeelaGTP.h \
LeelaGTP/MovLancifolium.h \
LeelaGTP/GTPConfig.h
DISTFILES += \
LeelaGTP/leelagtp.rc
RESOURCES += \
LeelaGTP/leelagtp.qrc