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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-11-02 17:03:13 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-11-02 17:03:13 +0300
commit9ea97203ae2049ea50e7bfbe3e30815eebb5990c (patch)
tree5e75f4d52920ed4460abbbd9b8d36df0f55d16da /source/blender/collada/CMakeLists.txt
parent9e9ab1a22732487778aa7515bd3d08fbcdec3d79 (diff)
Mac :
- Updated CMake files for building with openCollada Update of the 10.5 libs including openCollada is coming in next commit
Diffstat (limited to 'source/blender/collada/CMakeLists.txt')
-rw-r--r--source/blender/collada/CMakeLists.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt
index 5a8c08a254d..f510e7ee9ad 100644
--- a/source/blender/collada/CMakeLists.txt
+++ b/source/blender/collada/CMakeLists.txt
@@ -26,6 +26,24 @@
FILE(GLOB SRC *.cpp)
+IF(APPLE)
+SET(INC
+ .
+ ../blenlib
+ ../blenkernel
+ ../windowmanager
+ ../makesdna
+ ../makesrna
+ ../editors/include
+ ../../../intern/guardedalloc
+ ${OPENCOLLADA_INC}/COLLADAStreamWriter
+ ${OPENCOLLADA_INC}/COLLADABaseUtils
+ ${OPENCOLLADA_INC}/COLLADAFramework
+ ${OPENCOLLADA_INC}/COLLADASaxFrameworkLoader
+)
+
+ELSE(APPLE)
+
SET(INC
.
../blenlib
@@ -41,4 +59,6 @@ SET(INC
${OPENCOLLADA}/COLLADASaxFrameworkLoader/include
)
+ENDIF(APPLE)
+
BLENDERLIB(bf_collada "${SRC}" "${INC}")