diff options
author | Adam Moss <moss@lindenlab.com> | 2009-10-16 13:28:31 +0000 |
---|---|---|
committer | Adam Moss <moss@lindenlab.com> | 2009-10-16 13:28:31 +0000 |
commit | d999da2072f7d8c6a2e86f4c40420f5112d44b0f (patch) | |
tree | 6bcc4cb1c843eef60fcf57157e016eacde799c2f /indra/llxml/CMakeLists.txt | |
parent | 90a8ec369f5a57bdcadf8941b3c4febd583c19e9 (diff) |
DEV-41407 resurrect and fix LLControlGroup test, convert it to a llxml integration test.
Diffstat (limited to 'indra/llxml/CMakeLists.txt')
-rw-r--r-- | indra/llxml/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/indra/llxml/CMakeLists.txt b/indra/llxml/CMakeLists.txt index 3f7714f505..fbcfade383 100644 --- a/indra/llxml/CMakeLists.txt +++ b/indra/llxml/CMakeLists.txt @@ -44,3 +44,25 @@ target_link_libraries( llxml llmath ${EXPAT_LIBRARIES} ) + +# tests + +# unit tests + +SET(llxml_TEST_SOURCE_FILES + # none yet! + ) +LL_ADD_PROJECT_UNIT_TESTS(llxml "${llxml_TEST_SOURCE_FILES}") + +# integration tests + +# set(TEST_DEBUG on) +set(test_libs + ${LLXML_LIBRARIES} + ${WINDOWS_LIBRARIES} + ${LLMATH_LIBRARIES} + ${LLCOMMON_LIBRARIES} + ) + +LL_ADD_INTEGRATION_TEST(llcontrol "" "${test_libs}") + |