1.1 --- a/gplate/tags/tests/CMakeLists.txt Sat Jun 26 13:52:43 2010 -0500
1.2 +++ b/gplate/tags/tests/CMakeLists.txt Fri Jul 02 02:56:50 2010 -0500
1.3 @@ -1,6 +1,18 @@
1.4 enable_testing()
1.5
1.6 +# define the static library for tag testing
1.7 +add_library(gplate-tag-test STATIC
1.8 + gplate-tag-test.c
1.9 +)
1.10 +target_link_libraries(gplate-tag-test gplate)
1.11 +
1.12 +# add the text tag tests
1.13 add_executable(test-text-tag test-text-tag.c)
1.14 -target_link_libraries(test-text-tag gplate)
1.15 +target_link_libraries(test-text-tag gplate-tag-test)
1.16 add_test(GPlateTextTag test-text-tag)
1.17
1.18 +# add the variable tag tests
1.19 +add_executable(test-variable-tag test-variable-tag.c)
1.20 +target_link_libraries(test-variable-tag gplate-tag-test)
1.21 +add_test(GPlateVariableTag test-variable-tag)
1.22 +