ttrts/source/test/CMakeLists.txt
2015-01-02 14:04:11 +00:00

17 lines
267 B
CMake

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