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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-11-02 23:40:47 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-11-02 23:40:47 +0300
commit5c538fc832495e0927dfc60ec8094f76c1f6db7b (patch)
treeea3b7f984b20dcf0970d91efbec8c8729418707c /CMakeLists.txt
parentacc09693c451986d5057827ed9b2f5ba4c316bdd (diff)
Mac :
- remove CMake warnings when building with openMP
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74c527841f5..7c5ba143b52 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -518,9 +518,9 @@ IF(APPLE)
ENDIF (WITH_COCOA)
IF(WITH_OPENMP)
- SET(LLIBS "${LLIBS} -lgomp ")
- SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp ")
- SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp ")
+ SET(LLIBS "${LLIBS} -lgomp")
+ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp")
+ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp")
ENDIF(WITH_OPENMP)
IF (WITH_OPENCOLLADA)