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/CMakeLists.txt
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/CMakeLists.txt')
-rw-r--r--intern/CMakeLists.txt46
1 files changed, 23 insertions, 23 deletions
diff --git a/intern/CMakeLists.txt b/intern/CMakeLists.txt
index a497d8f2078..3eed1ef54d2 100644
--- a/intern/CMakeLists.txt
+++ b/intern/CMakeLists.txt
@@ -24,30 +24,30 @@
#
# ***** END GPL LICENSE BLOCK *****
-ADD_SUBDIRECTORY(audaspace)
-ADD_SUBDIRECTORY(string)
-ADD_SUBDIRECTORY(ghost)
-ADD_SUBDIRECTORY(guardedalloc)
-ADD_SUBDIRECTORY(moto)
-ADD_SUBDIRECTORY(memutil)
-ADD_SUBDIRECTORY(iksolver)
-ADD_SUBDIRECTORY(opennl)
-ADD_SUBDIRECTORY(smoke)
+add_subdirectory(audaspace)
+add_subdirectory(string)
+add_subdirectory(ghost)
+add_subdirectory(guardedalloc)
+add_subdirectory(moto)
+add_subdirectory(memutil)
+add_subdirectory(iksolver)
+add_subdirectory(opennl)
+add_subdirectory(smoke)
-IF(WITH_MOD_FLUID)
- ADD_SUBDIRECTORY(elbeem)
-ENDIF(WITH_MOD_FLUID)
+if(WITH_MOD_FLUID)
+ add_subdirectory(elbeem)
+endif()
-IF(WITH_MOD_DECIMATE)
- ADD_SUBDIRECTORY(container)
- ADD_SUBDIRECTORY(decimation)
-ENDIF(WITH_MOD_DECIMATE)
+if(WITH_MOD_DECIMATE)
+ add_subdirectory(container)
+ add_subdirectory(decimation)
+endif()
-IF(WITH_MOD_BOOLEAN)
- ADD_SUBDIRECTORY(boolop)
- ADD_SUBDIRECTORY(bsp)
-ENDIF(WITH_MOD_BOOLEAN)
+if(WITH_MOD_BOOLEAN)
+ add_subdirectory(boolop)
+ add_subdirectory(bsp)
+endif()
-IF(WITH_IK_ITASC)
- ADD_SUBDIRECTORY(itasc)
-ENDIF(WITH_IK_ITASC)
+if(WITH_IK_ITASC)
+ add_subdirectory(itasc)
+endif()