2014-12-16 13:12:51 +00:00
|
|
|
|
|
|
|
# ====================== tests =======================
|
|
|
|
# Project name
|
|
|
|
project( ttrts-test )
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
../game
|
2014-12-16 13:12:53 +00:00
|
|
|
../maths
|
2014-12-16 13:12:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set( SOURCES
|
|
|
|
test.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
# Add the executable
|
|
|
|
add_executable( ttrts-test ${SOURCES} )
|
|
|
|
|
2014-12-18 14:02:12 +00:00
|
|
|
target_link_libraries( ttrts-test game )
|