ttrts/source/test/CMakeLists.txt
Marc Di Luzio d9b9f3d7dd Re-organise source directory and targets
ttrts -> client
game -> ttrts
2014-12-30 13:24:19 +00:00

18 lines
271 B
CMake

# ====================== tests =======================
# Project name
project( ttrts-test )
include_directories(
../ttrts
../maths
)
set( SOURCES
test.cpp
)
# Add the executable
add_executable( ttrts-test ${SOURCES} )
target_link_libraries( ttrts-test ttrts )