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/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}")