2014-12-16 13:12:51 +00:00
|
|
|
|
|
|
|
# ====================== tests =======================
|
|
|
|
# Project name
|
|
|
|
project( ttrts-test )
|
|
|
|
|
|
|
|
include_directories(
|
2014-12-30 13:24:19 +00:00
|
|
|
../ttrts
|
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-30 13:24:19 +00:00
|
|
|
target_link_libraries( ttrts-test ttrts )
|