gplate/functions/tests/CMakeLists.txt
author Gary Kramlich <grim@reaperworld.com>
Sun Jul 04 16:09:43 2010 -0500 (22 months ago)
changeset 405 b90b9411363f
parent 402 b9a2a060c766
permissions -rw-r--r--
moved the include function tests to the new format

refs #16
     1 enable_testing()
     2 
     3 add_executable(test-gplate-for-function test-gplate-for-function.c)
     4 target_link_libraries(test-gplate-for-function gplate)
     5 list(APPEND FUNCTION_TESTS test-gplate-for-function)
     6 
     7 add_executable(test-gplate-include-function test-gplate-include-function.c)
     8 target_link_libraries(test-gplate-include-function gplate)
     9 list(APPEND FUNCTION_TESTS test-gplate-for-function)
    10 
    11 add_test(GPlateFunctions
    12          ${GTESTER} -k --verbose -o test-gplate-function.log
    13          ${FUNCTION_TESTS}
    14 )
    15