gplate/tags/tests/CMakeLists.txt
author Gary Kramlich <grim@reaperworld.com>
Fri Jul 02 03:00:15 2010 -0500 (22 months ago)
changeset 391 20d032b30b6a
parent 389 8baf0603ff07
child 396 2771744219bd
permissions -rw-r--r--
renamed test-variable-tag.c to gplate-variable-tag-test.c
renamed test-text-tag.c to gplate-text-tag-test.c
     1 enable_testing()
     2 
     3 # define the static library for tag testing
     4 add_library(gplate-tag-test STATIC
     5 	gplate-tag-test.c
     6 )
     7 target_link_libraries(gplate-tag-test gplate)
     8 
     9 # add the text tag tests
    10 add_executable(test-text-tag gplate-text-tag-test.c)
    11 target_link_libraries(test-text-tag gplate-tag-test)
    12 add_test(GPlateTextTag test-text-tag)
    13 
    14 # add the variable tag tests
    15 add_executable(test-variable-tag gplate-variable-tag-test.c)
    16 target_link_libraries(test-variable-tag gplate-tag-test)
    17 add_test(GPlateVariableTag test-variable-tag)
    18