diff options
| author | Dave Parks <davep@lindenlab.com> | 2010-09-30 15:56:41 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2010-09-30 15:56:41 -0500 | 
| commit | 295de1a5372cf70563a6f25313c17f26bd05b039 (patch) | |
| tree | 13ac0edad3f12fe1c75c927f72468c2b6c864bcc /indra/llui | |
| parent | f6b1dddcec1bb237a90a2e857306510b5239b52c (diff) | |
Put some errant tests under if (LL_TESTS) conditional.
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/CMakeLists.txt | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/indra/llui/CMakeLists.txt b/indra/llui/CMakeLists.txt index c59ef7819c..2c68f8cf75 100644 --- a/indra/llui/CMakeLists.txt +++ b/indra/llui/CMakeLists.txt @@ -242,9 +242,11 @@ target_link_libraries(llui      )  # Add tests -include(LLAddBuildTest) -SET(llui_TEST_SOURCE_FILES -    llurlmatch.cpp -    llurlentry.cpp -    ) -LL_ADD_PROJECT_UNIT_TESTS(llui "${llui_TEST_SOURCE_FILES}") +if (LL_TESTS) +	include(LLAddBuildTest) +	SET(llui_TEST_SOURCE_FILES +		llurlmatch.cpp +		llurlentry.cpp +		) +	LL_ADD_PROJECT_UNIT_TESTS(llui "${llui_TEST_SOURCE_FILES}") +endif (LL_TESTS)
\ No newline at end of file | 
