-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
NapoleonPP.pro
executable file
·58 lines (55 loc) · 1001 Bytes
/
NapoleonPP.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
57
58
QMAKE_CXXFLAGS += -std=c++0x -pthread
LIBS += -pthread
CONFIG -= qt -Wl,--no-as-needed
SOURCES += \
main.cpp \
move.cpp \
utils.cpp \
piece.cpp \
stopwatch.cpp \
pawn.cpp \
board.cpp \
movedatabase.cpp \
knight.cpp \
king.cpp \
queen.cpp \
fenstring.cpp \
movegenerator.cpp \
benchmark.cpp \
search.cpp \
evaluation.cpp \
transpositiontable.cpp \
zobrist.cpp \
hashentry.cpp \
uci.cpp \
searchinfo.cpp \
moveselector.cpp
HEADERS += \
move.h \
constants.h \
utils.h \
piece.h \
stopwatch.h \
compassrose.h \
console.h \
pawn.h \
board.h \
defines.h \
movedatabase.h \
knight.h \
king.h \
rook.h \
bishop.h \
queen.h \
fenstring.h \
movegenerator.h \
benchmark.h \
search.h \
evaluation.h \
transpositiontable.h \
zobrist.h \
hashentry.h \
uci.h \
searchinfo.h \
moveselector.h \
piecesquaretables.h