gplate/tags/tests/CMakeLists.txt
changeset 396 2771744219bd
parent 391 20d032b30b6a
child 398 f378b0ef5573
     1.1 --- a/gplate/tags/tests/CMakeLists.txt	Fri Jul 02 03:00:15 2010 -0500
     1.2 +++ b/gplate/tags/tests/CMakeLists.txt	Sun Jul 04 02:53:53 2010 -0500
     1.3 @@ -9,10 +9,18 @@
     1.4  # add the text tag tests
     1.5  add_executable(test-text-tag gplate-text-tag-test.c)
     1.6  target_link_libraries(test-text-tag gplate-tag-test)
     1.7 -add_test(GPlateTextTag test-text-tag)
     1.8 +list(APPEND TAG_TESTS test-text-tag)
     1.9  
    1.10  # add the variable tag tests
    1.11  add_executable(test-variable-tag gplate-variable-tag-test.c)
    1.12  target_link_libraries(test-variable-tag gplate-tag-test)
    1.13 -add_test(GPlateVariableTag test-variable-tag)
    1.14 +list(APPEND TAG_TESTS test-variable-tag)
    1.15  
    1.16 +# add the comment tag tests
    1.17 +add_executable(gplate-comment-tag-test gplate-comment-tag-test.c)
    1.18 +target_link_libraries(gplate-comment-tag-test gplate-tag-test)
    1.19 +list(APPEND TAG_TESTS gplate-comment-tag-test)
    1.20 +
    1.21 +# add the tests for gtester
    1.22 +add_test(GPlateTagTests ${GTESTER} -k --verbose ${TAG_TESTS})
    1.23 +