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>2010-09-07 13:15:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-07 13:15:59 +0400
commitea95d71067ec3abc392d69321c35dd1b78b65712 (patch)
tree35f610c7d02a8624c77df04743aef5fe8a86a0a5 /source/blender/render/CMakeLists.txt
parentdb775721c84f3befd994908a731a24ea9f868e4f (diff)
bugfix [#23189] Num-0 swtich to Camera view and back doesn't respect UserPerspective view.
also fix for recent cmake edits.
Diffstat (limited to 'source/blender/render/CMakeLists.txt')
-rw-r--r--source/blender/render/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/render/CMakeLists.txt b/source/blender/render/CMakeLists.txt
index 68968304915..4e594abf441 100644
--- a/source/blender/render/CMakeLists.txt
+++ b/source/blender/render/CMakeLists.txt
@@ -56,8 +56,8 @@ ENDIF(WITH_QUICKTIME)
IF(APPLE)
IF(CMAKE_OSX_ARCHITECTURES MATCHES "i386" OR CMAKE_OSX_ARCHITECTURES MATCHES "x86_64")
- LIST(APPEND CMAKE_C_FLAGS_RELEASE -mfpmath=sse)
- LIST(APPEND CMAKE_CXX_FLAGS_RELEASE -mfpmath=sse)
+ SET(CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE} -mfpmath=sse)
+ SET(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE} -mfpmath=sse)
ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES "i386" OR CMAKE_OSX_ARCHITECTURES MATCHES "x86_64")
ENDIF(APPLE)