You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
12 years ago
|
find_package(CxxTest)
|
||
|
if(CXXTEST_FOUND)
|
||
|
|
||
|
include_directories(${CXXTEST_INCLUDE_DIR}
|
||
|
../lib)
|
||
|
|
||
|
enable_testing()
|
||
|
|
||
|
CXXTEST_ADD_TEST(test_graph
|
||
|
generated_main.cpp
|
||
|
graph/test_graph.hpp)
|
||
|
|
||
|
endif()
|
||
|
|
||
|
add_custom_target( test
|
||
|
COMMAND ./test_graph
|
||
|
)
|