ttrts/source/ui/CMakeLists.txt

19 lines
293 B
Text
Raw Normal View History

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} )