gplate/tests/CMakeLists.txt
author Gary Kramlich <grim@reaperworld.com>
Sun Jul 04 03:40:27 2010 -0500 (22 months ago)
changeset 402 b9a2a060c766
parent 400 0938cb5d076b
permissions -rw-r--r--
guess there wasn't a whole lot left for the test name standardization

closes #15
     1 enable_testing()
     2 
     3 ###############################################################################
     4 # collection tests
     5 ###############################################################################
     6 add_executable(test-gplate-collection-interface test-gplate-collection-interface.c)
     7 target_link_libraries(test-gplate-collection-interface gplate)
     8 add_test(GPlateCollectionInterface
     9          ${GTESTER} -k --verbose -o test-gplate-collection-interface.log
    10          test-gplate-collection-interface
    11 )
    12 
    13 ###############################################################################
    14 # utility tests
    15 ###############################################################################
    16 add_executable(test-gplate-utility-functions test-gplate-utility-functions.c)
    17 target_link_libraries(test-gplate-utility-functions gplate)
    18 add_test(GPlateUtilityFunctions
    19          ${GTESTER} -k --verbose -o test-gplate-utility-functions.log
    20          test-gplate-utility-functions
    21 )
    22