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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-30 19:51:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-30 19:51:58 +0400
commitcf3956f450127956f92e0efea6010c5e9eb2c490 (patch)
tree9e9410432e8c4a9054da4992b51a21ef6e3ac604 /build_files
parent2bb59bc2734ac682208419e42aebf27285a88d22 (diff)
formatting edits only
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/macros.cmake14
1 files changed, 8 insertions, 6 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 8a665405e72..e279249fdfe 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -335,14 +335,14 @@ macro(TEST_SSE_SUPPORT)
#include <xmmintrin.h>
int main() { __m128 v = _mm_setzero_ps(); return 0; }"
SUPPORT_SSE_BUILD)
-
+
if(SUPPORT_SSE_BUILD)
message(STATUS "SSE Support: detected.")
else()
message(STATUS "SSE Support: missing.")
endif()
set(${SUPPORT_SSE_BUILD} ${SUPPORT_SSE_BUILD} CACHE INTERNAL "SSE Test")
- endif()
+ endif()
if(NOT DEFINED ${SUPPORT_SSE2_BUILD})
check_c_source_runs("
@@ -354,7 +354,7 @@ macro(TEST_SSE_SUPPORT)
message(STATUS "SSE2 Support: detected.")
else()
message(STATUS "SSE2 Support: missing.")
- endif()
+ endif()
set(${SUPPORT_SSE2_BUILD} ${SUPPORT_SSE2_BUILD} CACHE INTERNAL "SSE2 Test")
endif()
@@ -493,7 +493,7 @@ endmacro()
# hacks to override initial project settings
-# these macros must be called directly before/after project(Blender)
+# these macros must be called directly before/after project(Blender)
macro(blender_project_hack_pre)
# ----------------
# MINGW HACK START
@@ -535,8 +535,10 @@ macro(blender_project_hack_post)
# have libs we define and that cmake & scons builds match.
set(CMAKE_C_STANDARD_LIBRARIES "" CACHE STRING "" FORCE)
set(CMAKE_CXX_STANDARD_LIBRARIES "" CACHE STRING "" FORCE)
- mark_as_advanced(CMAKE_C_STANDARD_LIBRARIES)
- mark_as_advanced(CMAKE_CXX_STANDARD_LIBRARIES)
+ mark_as_advanced(
+ CMAKE_C_STANDARD_LIBRARIES
+ CMAKE_CXX_STANDARD_LIBRARIES
+ )
endif()
unset(_reset_standard_libraries)