-
Notifications
You must be signed in to change notification settings - Fork 0
/
othello.pro
40 lines (33 loc) · 926 Bytes
/
othello.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-02T01:19:28
#
#-------------------------------------------------
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = othello
TEMPLATE = app
SOURCES += main/main.cpp\
main/mainwindow.cpp \
board/board.cpp \
board/square.cpp \
player/player.cpp \
player/humanplayer.cpp \
player/computerplayer.cpp \
ai.cpp \
referee.cpp \
ui/uisquare.cpp \
ui/uigamescene.cpp \
gamelogic/gameengine.cpp
HEADERS += main/mainwindow.h \
board/board.h \
board/square.h \
player/player.h \
player/humanplayer.h \
player/computerplayer.h \
ai.h \
referee.h \
ui/uisquare.h \
ui/uigamescene.h \
gamelogic/gameengine.h
FORMS += main/mainwindow.ui