[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15990] trunk/blender/CMakeLists.txt: Fixed a warning due to a change in policy between cmake 2.4 and

Chris Want cwant at ualberta.ca
Wed Aug 6 21:47:52 CEST 2008


Revision: 15990
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15990
Author:   hos
Date:     2008-08-06 21:47:52 +0200 (Wed, 06 Aug 2008)

Log Message:
-----------
Fixed a warning due to a change in policy between cmake 2.4 and
cmake 2.6. (Other warnings still exist, but are harder to fix.)

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2008-08-06 16:50:07 UTC (rev 15989)
+++ trunk/blender/CMakeLists.txt	2008-08-06 19:47:52 UTC (rev 15990)
@@ -183,9 +183,9 @@
   SET(LLIBS "-lXi -lutil -lc -lm -lpthread -lstdc++")
 
   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)
 
 





More information about the Bf-blender-cvs mailing list