Some initial game board code, really simple
This commit is contained in:
parent
bf2f79dc8d
commit
8ddb8ae916
3 changed files with 128 additions and 0 deletions
14
game/CMakeLists.txt
Normal file
14
game/CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 2.8.7)
|
||||
|
||||
# game project
|
||||
project( 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
|
||||
game.cpp
|
||||
)
|
||||
|
||||
add_library( game ${SOURCES} )
|
Loading…
Add table
Add a link
Reference in a new issue