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>2011-06-04 15:06:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-04 15:06:41 +0400
commita440679c57f6a309079a0253d557716044d78e6c (patch)
tree6792bd5688bd26ba8b2dcae634b6df8e441d60d0
parentc6f3fabd16ff5fb9a941fbb41d7d8f07c5be14ab (diff)
edits to make these cmake files compatible with my own basic cmake parser which checks for correctness in our files.
-rw-r--r--source/blender/modifiers/CMakeLists.txt8
-rw-r--r--source/blender/windowmanager/CMakeLists.txt4
-rw-r--r--source/blenderplayer/bad_level_call_stubs/CMakeLists.txt4
3 files changed, 12 insertions, 4 deletions
diff --git a/source/blender/modifiers/CMakeLists.txt b/source/blender/modifiers/CMakeLists.txt
index cf66a27bda2..348e2a0ec1d 100644
--- a/source/blender/modifiers/CMakeLists.txt
+++ b/source/blender/modifiers/CMakeLists.txt
@@ -88,8 +88,12 @@ set(SRC
if(WITH_MOD_BOOLEAN)
add_definitions(-DWITH_MOD_BOOLEAN)
- list(APPEND SRC intern/MOD_boolean_util.c)
- list(APPEND INC ../../../intern/bsp/extern)
+ list(APPEND SRC
+ intern/MOD_boolean_util.c
+ )
+ list(APPEND INC
+ ../../../intern/bsp/extern
+ )
endif()
if(WITH_MOD_DECIMATE)
diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt
index 76ba298cd5f..6d125c01af4 100644
--- a/source/blender/windowmanager/CMakeLists.txt
+++ b/source/blender/windowmanager/CMakeLists.txt
@@ -115,7 +115,9 @@ endif()
if(APPLE)
if(NOT WITH_COCOA)
- list(APPEND SRC intern/wm_apple.c)
+ list(APPEND SRC
+ intern/wm_apple.c
+ )
endif()
endif()
diff --git a/source/blenderplayer/bad_level_call_stubs/CMakeLists.txt b/source/blenderplayer/bad_level_call_stubs/CMakeLists.txt
index 2cc6dbc8255..15c3b2a4743 100644
--- a/source/blenderplayer/bad_level_call_stubs/CMakeLists.txt
+++ b/source/blenderplayer/bad_level_call_stubs/CMakeLists.txt
@@ -46,7 +46,9 @@ set(SRC
)
if(WITH_BUILDINFO)
- list(APPEND SRC ../../creator/buildinfo.c)
+ list(APPEND SRC
+ ../../creator/buildinfo.c
+ )
add_definitions(-DBUILD_DATE)
endif()