[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31951] trunk/blender/source/blender/ blenlib/CMakeLists.txt: ignore BLI_bfile with cmake since its not used anywhere

Campbell Barton ideasman42 at gmail.com
Wed Sep 15 18:23:04 CEST 2010


Revision: 31951
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31951
Author:   campbellbarton
Date:     2010-09-15 18:23:04 +0200 (Wed, 15 Sep 2010)

Log Message:
-----------
ignore BLI_bfile with cmake since its not used anywhere

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

Modified: trunk/blender/source/blender/blenlib/CMakeLists.txt
===================================================================
--- trunk/blender/source/blender/blenlib/CMakeLists.txt	2010-09-15 16:13:32 UTC (rev 31950)
+++ trunk/blender/source/blender/blenlib/CMakeLists.txt	2010-09-15 16:23:04 UTC (rev 31951)
@@ -38,11 +38,12 @@
 	${FREETYPE_INCLUDE_DIRS}
 )
 
+# unused
+LIST(REMOVE_ITEM SRC "${CMAKE_CURRENT_SOURCE_DIR}/intern/BLI_bfile.c")
+
+
 IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
-SET(INC
-	${INC}
-	${BINRELOC_INC}
-)
+	LIST(APPEND INC "${BINRELOC_INC}")
 ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux")
 
 IF(WIN32)
@@ -50,7 +51,7 @@
 ENDIF(WIN32)
 
 IF(WITH_OPENMP)
-		ADD_DEFINITIONS(-DPARALLEL=1)
+	ADD_DEFINITIONS(-DPARALLEL=1)
 ENDIF(WITH_OPENMP)
 
 BLENDERLIB(bf_blenlib "${SRC}" "${INC}")





More information about the Bf-blender-cvs mailing list