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/SConscript')
-rw-r--r--source/blender/collada/SConscript10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/collada/SConscript b/source/blender/collada/SConscript
new file mode 100644
index 00000000000..7bf2870d6c5
--- /dev/null
+++ b/source/blender/collada/SConscript
@@ -0,0 +1,10 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.cpp')
+
+# relative paths to include dirs, space-separated, string
+incs = '../blenlib ../blenkernel ../windowmanager ../makesdna ../makesrna ../editors/include ../../../intern/guardedalloc [OPENCOLLADA]/COLLADAStreamWriter/include [OPENCOLLADA]/COLLADABaseUtils/include [OPENCOLLADA]/COLLADAFramework/include [OPENCOLLADA]/COLLADASaxFrameworkLoader/include '.replace('[OPENCOLLADA]', env['BF_OPENCOLLADA_INC'])
+
+env.BlenderLib ('bf_collada', sources, Split(incs), [], libtype='core', priority=200 )
+