summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBoroondas Gupte (original fix by Techwolf Lupindo) <hg@boroon.dasgupta.ch>2010-10-04 23:54:31 +0200
committerBoroondas Gupte (original fix by Techwolf Lupindo) <hg@boroon.dasgupta.ch>2010-10-04 23:54:31 +0200
commitd918701d585873fdeb1dd2e112831bf510e40b22 (patch)
treebe40d11f5736920cf5e84fde3b0a419efb7e3b36 /indra
parent9ec432034dc3c45d7ce763eb02dae4cc7f6b8da8 (diff)
SNOW-654: Added missing "if (LL_TESTS)" in indra/CMakeLists.txt
Daggified version of http://svn.secondlife.com/trac/linden/changeset/3431 (or of the SNOW-654 part of https://bitbucket.org/Techwolf/viewer-development/changeset/5697874b390b )
Diffstat (limited to 'indra')
-rw-r--r--indra/CMakeLists.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt
index 1010b199a1..8052f7b473 100644
--- a/indra/CMakeLists.txt
+++ b/indra/CMakeLists.txt
@@ -112,6 +112,8 @@ if (SERVER)
endif (WINDOWS)
endif (SERVER)
-# Define after the custom viewer and server targets are created so individual
-# apps can add themselves as dependencies
-add_subdirectory(${INTEGRATION_TESTS_PREFIX}integration_tests)
+if (LL_TESTS)
+ # Define after the custom viewer and server targets are created so individual
+ # apps can add themselves as dependencies
+ add_subdirectory(${INTEGRATION_TESTS_PREFIX}integration_tests)
+endif (LL_TESTS)