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:
Diffstat (limited to 'source/blender/modifiers/CMakeLists.txt')
-rw-r--r--source/blender/modifiers/CMakeLists.txt30
1 files changed, 15 insertions, 15 deletions
diff --git a/source/blender/modifiers/CMakeLists.txt b/source/blender/modifiers/CMakeLists.txt
index c14787aeae7..5948c0cca91 100644
--- a/source/blender/modifiers/CMakeLists.txt
+++ b/source/blender/modifiers/CMakeLists.txt
@@ -24,7 +24,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC
+set(INC
. ./intern
../blenlib
../makesdna
@@ -36,7 +36,7 @@ SET(INC
${ZLIB_INC}
)
-SET(SRC
+set(SRC
intern/MOD_armature.c
intern/MOD_array.c
intern/MOD_bevel.c
@@ -81,21 +81,21 @@ SET(SRC
intern/MOD_util.h
)
-IF(WITH_MOD_BOOLEAN)
- ADD_DEFINITIONS(-DWITH_MOD_BOOLEAN)
- LIST(APPEND SRC
+if(WITH_MOD_BOOLEAN)
+ add_definitions(-DWITH_MOD_BOOLEAN)
+ list(APPEND SRC
intern/MOD_boolean_util.c
)
- LIST(APPEND INC ../../../intern/bsp/extern)
-ENDIF(WITH_MOD_BOOLEAN)
+ list(APPEND INC ../../../intern/bsp/extern)
+endif()
-IF(WITH_MOD_DECIMATE)
- ADD_DEFINITIONS(-DWITH_MOD_DECIMATE)
- LIST(APPEND INC ../../../intern/decimation/extern)
-ENDIF(WITH_MOD_DECIMATE)
+if(WITH_MOD_DECIMATE)
+ add_definitions(-DWITH_MOD_DECIMATE)
+ list(APPEND INC ../../../intern/decimation/extern)
+endif()
-IF(NOT WITH_MOD_FLUID)
- ADD_DEFINITIONS(-DDISABLE_ELBEEM)
-ENDIF(NOT WITH_MOD_FLUID)
+if(NOT WITH_MOD_FLUID)
+ add_definitions(-DDISABLE_ELBEEM)
+endif()
-BLENDERLIB(bf_modifiers "${SRC}" "${INC}")
+blenderlib(bf_modifiers "${SRC}" "${INC}")