ttrts/source/game/CMakeLists.txt
2014-12-16 13:13:02 +00:00

17 lines
No EOL
202 B
CMake

cmake_minimum_required(VERSION 2.8.7)
# game project
project( game )
include_directories(
../maths
)
# Add the sources
set( SOURCES
game.cpp
unit.cpp
order.cpp
)
add_library( game ${SOURCES} )