Move the board code out to ui as it's only for board visualisation
This commit is contained in:
parent
a17a9db2ad
commit
2abd4ad832
9 changed files with 39 additions and 13 deletions
|
@ -0,0 +1,19 @@
|
|||
cmake_minimum_required(VERSION 2.8.7)
|
||||
|
||||
# game project
|
||||
project( ui )
|
||||
|
||||
include_directories(
|
||||
../maths
|
||||
../game
|
||||
)
|
||||
|
||||
# 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
|
||||
board.cpp
|
||||
)
|
||||
|
||||
add_library( ui ${SOURCES} )
|
Loading…
Add table
Add a link
Reference in a new issue