Rename CBoardData, refactor a few things and add a maths library folder
This commit is contained in:
parent
e8429ae4a2
commit
743c9a2859
11 changed files with 150 additions and 116 deletions
|
@ -3,12 +3,17 @@ cmake_minimum_required(VERSION 2.8.7)
|
|||
# game project
|
||||
project( game )
|
||||
|
||||
include_directories(
|
||||
../maths
|
||||
)
|
||||
|
||||
# Set to use c++11, because we're cool like that
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11" )
|
||||
|
||||
# Add the sources
|
||||
set( SOURCES
|
||||
game.cpp
|
||||
board.cpp
|
||||
)
|
||||
|
||||
add_library( game ${SOURCES} )
|
Loading…
Add table
Add a link
Reference in a new issue