diff options
author | Merov Linden <merov@lindenlab.com> | 2011-03-29 16:54:52 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2011-03-29 16:54:52 -0700 |
commit | df05762114bae02d18fe14bbfbb5ca45222104f8 (patch) | |
tree | 0555fd88c2d67bfcf82116f06e09b59b962b4a24 /indra/integration_tests | |
parent | 0d1307c730d7cb57451698c183bfa4e6ead5e49c (diff) |
STORM-987: Make building of llimage_libtest optional so that builf failure on Linux doesn't block autobuild merge
Diffstat (limited to 'indra/integration_tests')
-rw-r--r-- | indra/integration_tests/CMakeLists.txt | 4 | ||||
-rw-r--r-- | indra/integration_tests/llimage_libtest/CMakeLists.txt | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/indra/integration_tests/CMakeLists.txt b/indra/integration_tests/CMakeLists.txt index 5935f23fe9..248583d775 100644 --- a/indra/integration_tests/CMakeLists.txt +++ b/indra/integration_tests/CMakeLists.txt @@ -1,4 +1,6 @@ # -*- cmake -*- add_subdirectory(llui_libtest) -add_subdirectory(llimage_libtest) +if (LLIMAGE_LIBTEST) + add_subdirectory(llimage_libtest) +endif (LLIMAGE_LIBTEST) diff --git a/indra/integration_tests/llimage_libtest/CMakeLists.txt b/indra/integration_tests/llimage_libtest/CMakeLists.txt index f59440be6b..cab0546083 100644 --- a/indra/integration_tests/llimage_libtest/CMakeLists.txt +++ b/indra/integration_tests/llimage_libtest/CMakeLists.txt @@ -53,9 +53,9 @@ if (DARWIN) find_library(COREFOUNDATION_LIBRARY CoreFoundation) set(OS_LIBRARIES ${COREFOUNDATION_LIBRARY}) elseif (WINDOWS) -# set(OS_LIBRARIES) + set(OS_LIBRARIES) elseif (LINUX) -# set(OS_LIBRARIES) + set(OS_LIBRARIES) else (DARWIN) message(FATAL_ERROR "Unknown platform") endif (DARWIN) |