-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
executable file
·40 lines (38 loc) · 972 Bytes
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 3.10)
project(chess)
set(CMAKE_CXX_STANDARD 17)
add_executable(chess main.cpp
board/Board.cpp
board/Board.h
board/TwoDimensionalVector.h
config.h
game/Game.cpp
game/Game.h
multipiece/MultiPiece.cpp
multipiece/MultiPiece.h
pieces/Bishop.cpp
pieces/Bishop.h
pieces/King.cpp
pieces/King.h
pieces/Knight.cpp
pieces/Knight.h
pieces/Pawn.cpp
pieces/Pawn.h
pieces/Piece.cpp
pieces/Piece.h
pieces/Queen.cpp
pieces/Queen.h
pieces/Rook.cpp
pieces/Rook.h
players/Client.cpp
players/Client.h
players/Local.cpp
players/Local.h
players/NetworkPlayer.cpp
players/NetworkPlayer.h
players/Player.cpp
players/Player.h
players/Server.cpp
players/Server.h
point/Point.cpp
point/Point.h)