summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBoroondas Gupte <hg@boroon.dasgupta.ch>2010-10-05 00:02:30 +0200
committerBoroondas Gupte <hg@boroon.dasgupta.ch>2010-10-05 00:02:30 +0200
commit422780c88a98ad0b78c54a71189219de12992bc2 (patch)
tree14dba78a256f9fee4bbfdf979c241eddbc9bfa21 /indra
parentccb734e26c7014310b37b81edf327248cf040d68 (diff)
parentde9ec21470fae69a4e8eff9c204402de7a030cb8 (diff)
merged SNOW-654: Added missing "if (LL_TESTS)" in indra/CMakeLists.txt
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 261c0b17e2..8d4969a49e 100644
--- a/indra/CMakeLists.txt
+++ b/indra/CMakeLists.txt
@@ -123,6 +123,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)