17 lines
No EOL
202 B
CMake
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} ) |