diff options
| -rw-r--r-- | indra/llcorehttp/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | indra/llimage/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | indra/llmessage/CMakeLists.txt | 6 | 
3 files changed, 16 insertions, 0 deletions
| diff --git a/indra/llcorehttp/CMakeLists.txt b/indra/llcorehttp/CMakeLists.txt index 87796abd3c..4fda964eb6 100644 --- a/indra/llcorehttp/CMakeLists.txt +++ b/indra/llcorehttp/CMakeLists.txt @@ -3,15 +3,21 @@  project(llcorehttp)  include(00-Common) +if (LL_TESTS)  include(GoogleMock) +endif ()  include(CURL)  include(OpenSSL)  include(NGHTTP2)  include(ZLIBNG)  include(LLCoreHttp) +if (LL_TESTS)  include(LLAddBuildTest) +endif ()  include(LLCommon) +if (LL_TESTS)  include(Tut) +endif ()  include(bugsplat)  set(llcorehttp_SOURCE_FILES diff --git a/indra/llimage/CMakeLists.txt b/indra/llimage/CMakeLists.txt index cc75c463bc..79f9565ed9 100644 --- a/indra/llimage/CMakeLists.txt +++ b/indra/llimage/CMakeLists.txt @@ -8,9 +8,13 @@ include(LLImage)  include(JPEG)  include(LLKDU)  include(ZLIBNG) +if (LL_TESTS)  include(LLAddBuildTest) +endif ()  include(bugsplat) +if (LL_TESTS)  include(Tut) +endif ()  set(llimage_SOURCE_FILES      llimagebmp.cpp diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt index 4786956e85..2fef3cf15b 100644 --- a/indra/llmessage/CMakeLists.txt +++ b/indra/llmessage/CMakeLists.txt @@ -3,13 +3,19 @@  project(llmessage)  include(00-Common) +if (LL_TESTS)  include(GoogleMock)  include(LLAddBuildTest) +endif ()  include(LLCommon)  include(LLCoreHttp) +if (LL_TESTS)  include(LLAddBuildTest) +endif ()  include(Python) +if (LL_TESTS)  include(Tut) +endif ()  include(Python)  include(JsonCpp) | 
