diff options
author | Bryan O'Sullivan <bos@lindenlab.com> | 2009-03-02 22:28:49 +0000 |
---|---|---|
committer | Bryan O'Sullivan <bos@lindenlab.com> | 2009-03-02 22:28:49 +0000 |
commit | b5ef0bb6c235d3a50766fddf02c2850a54480173 (patch) | |
tree | e26b668284871c0af1d6974bd64bb8ac481b0a4c /indra | |
parent | 4521ec1584f4a274c8a1881c28ae429ad5142f9a (diff) |
Clean up use of tut
Diffstat (limited to 'indra')
-rw-r--r-- | indra/CMakeLists.txt | 7 | ||||
-rw-r--r-- | indra/cmake/CMakeLists.txt | 1 | ||||
-rw-r--r-- | indra/cmake/LLAddBuildTest.cmake | 1 | ||||
-rw-r--r-- | indra/cmake/Tut.cmake | 6 | ||||
-rw-r--r-- | indra/llmessage/CMakeLists.txt | 1 | ||||
-rw-r--r-- | indra/test/CMakeLists.txt | 1 |
6 files changed, 13 insertions, 4 deletions
diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index 153cc4d9aa..d19811586f 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -7,11 +7,10 @@ # The "cmake -E touch" command was released with 2.4.8. cmake_minimum_required(VERSION 2.4.8 FATAL_ERROR) -# This makes cmake 2.6 not complain about a version -# 2.4 compatibility mode -if(COMMAND cmake_policy) +# This makes cmake 2.6 not complain about version 2.4 compatibility. +if (COMMAND cmake_policy) cmake_policy(SET CMP0003 OLD) -endif(COMMAND cmake_policy) +endif (COMMAND cmake_policy) set(ROOT_PROJECT_NAME "SecondLife" CACHE STRING "The root project/makefile/solution name. Defaults to SecondLife.") diff --git a/indra/cmake/CMakeLists.txt b/indra/cmake/CMakeLists.txt index 34b8046a17..9ddcc62f2c 100644 --- a/indra/cmake/CMakeLists.txt +++ b/indra/cmake/CMakeLists.txt @@ -71,6 +71,7 @@ set(cmake_SOURCE_FILES Prebuilt.cmake QuickTime.cmake TemplateCheck.cmake + Tut.cmake UI.cmake UnixInstall.cmake Variables.cmake diff --git a/indra/cmake/LLAddBuildTest.cmake b/indra/cmake/LLAddBuildTest.cmake index 57797a0d12..5d30818642 100644 --- a/indra/cmake/LLAddBuildTest.cmake +++ b/indra/cmake/LLAddBuildTest.cmake @@ -1,3 +1,4 @@ +# -*- cmake -*- INCLUDE(APR) INCLUDE(LLMath) diff --git a/indra/cmake/Tut.cmake b/indra/cmake/Tut.cmake new file mode 100644 index 0000000000..7488e9dcb0 --- /dev/null +++ b/indra/cmake/Tut.cmake @@ -0,0 +1,6 @@ +# -*- cmake -*- +include(Prebuilt) + +if (NOT STANDALONE) + use_prebuilt_binary(tut) +endif(NOT STANDALONE) diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt index 4fb0187412..0f3e159802 100644 --- a/indra/llmessage/CMakeLists.txt +++ b/indra/llmessage/CMakeLists.txt @@ -8,6 +8,7 @@ include(LLMath) include(LLMessage) include(LLVFS) include(LLAddBuildTest) +include(Tut) include_directories (${CMAKE_CURRENT_SOURCE_DIR}) diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt index b9e0e3dbdd..c8682c8ea7 100644 --- a/indra/test/CMakeLists.txt +++ b/indra/test/CMakeLists.txt @@ -12,6 +12,7 @@ include(LLVFS) include(LLXML) include(LScript) include(Linking) +include(Tut) include_directories( ${LLCOMMON_INCLUDE_DIRS} |