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-12-08 11:43:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-08 11:43:06 +0300
commitafacd184982e58a9c830a3d5366e25983939a7ba (patch)
tree311ee6e5abfcda32e3cbad133276512d68abe25b /intern/guardedalloc
parent70df57df0f82be3966a09c8548bfde23fd5c17c4 (diff)
use lowercase for cmake builtin names and macros, remove contents in else() and endif() which is no longer needed.
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/CMakeLists.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/intern/guardedalloc/CMakeLists.txt b/intern/guardedalloc/CMakeLists.txt
index a095f050659..4ae0b17575b 100644
--- a/intern/guardedalloc/CMakeLists.txt
+++ b/intern/guardedalloc/CMakeLists.txt
@@ -24,29 +24,29 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC .)
+set(INC .)
-SET(SRC
+set(SRC
./intern/mallocn.c
BLO_sys_types.h
MEM_guardedalloc.h
)
-IF(WIN32 AND NOT UNIX)
- LIST(APPEND SRC
+if(WIN32 AND NOT UNIX)
+ list(APPEND SRC
intern/mmap_win.c
mmap_win.h
)
-ENDIF(WIN32 AND NOT UNIX)
+endif()
-BLENDERLIB(bf_intern_guardedalloc "${SRC}" "${INC}")
+blenderlib(bf_intern_guardedalloc "${SRC}" "${INC}")
# Override C++ alloc, optional.
-IF(WITH_CXX_GUARDEDALLOC)
- SET(SRC
+if(WITH_CXX_GUARDEDALLOC)
+ set(SRC
cpp/mallocn.cpp
)
- BLENDERLIB(bf_intern_guardedalloc_cpp "${SRC}" "${INC}")
-ENDIF(WITH_CXX_GUARDEDALLOC)
+ blenderlib(bf_intern_guardedalloc_cpp "${SRC}" "${INC}")
+endif()