18 lines
272 B
CMake
18 lines
272 B
CMake
|
|
# ====================== tests =======================
|
|
# Project name
|
|
project( ttrts-test )
|
|
|
|
include_directories(
|
|
../game
|
|
../maths
|
|
)
|
|
|
|
set( SOURCES
|
|
test.cpp
|
|
)
|
|
|
|
# Add the executable
|
|
add_executable( ttrts-test ${SOURCES} )
|
|
|
|
target_link_libraries( ttrts-test game ui )
|