Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-07-05 10:32:29 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2010-07-05 10:32:29 +0400
commitb5043c7dd552731a15376c63927e0371b709212a (patch)
tree29826a745fafefc7d619ddce6a433fc86db752c9 /CMake
parent7aca4eec4b9831fda9150b7f4a44f2f351582f7b (diff)
Fixed case of letters in CHECKCXXSOURCECOMPILES in cmake macro TEST_SSE_SUPPORT
Should be CheckCXXSourceCompiles to work fine in linux
Diffstat (limited to 'CMake')
-rw-r--r--CMake/macros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMake/macros.cmake b/CMake/macros.cmake
index 17662c5c447..aec86f7467a 100644
--- a/CMake/macros.cmake
+++ b/CMake/macros.cmake
@@ -183,7 +183,7 @@ MACRO(SETUP_LIBLINKS
ENDMACRO(SETUP_LIBLINKS)
MACRO(TEST_SSE_SUPPORT)
- INCLUDE(CHECKCXXSOURCECOMPILES)
+ INCLUDE(CheckCXXSourceCompiles)
MESSAGE(STATUS "Detecting SSE support")
IF(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)