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-15 20:23:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-15 20:23:04 +0400
commite6ce108f5c34da9ae5c13c5ea066f7f5298aa8a2 (patch)
tree1e9cab947d8e1388341cd7abdaa354e6eb198bc7 /source/blender/blenlib/CMakeLists.txt
parent9b518710c678a48c829be6d2432eba427f733bdf (diff)
ignore BLI_bfile with cmake since its not used anywhere
Diffstat (limited to 'source/blender/blenlib/CMakeLists.txt')
-rw-r--r--source/blender/blenlib/CMakeLists.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt
index 77615b23d87..320d4ac783f 100644
--- a/source/blender/blenlib/CMakeLists.txt
+++ b/source/blender/blenlib/CMakeLists.txt
@@ -38,11 +38,12 @@ SET(INC
${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 @@ IF(WIN32)
ENDIF(WIN32)
IF(WITH_OPENMP)
- ADD_DEFINITIONS(-DPARALLEL=1)
+ ADD_DEFINITIONS(-DPARALLEL=1)
ENDIF(WITH_OPENMP)
BLENDERLIB(bf_blenlib "${SRC}" "${INC}")