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/inflate/SConscript')
-rw-r--r--source/blender/inflate/SConscript20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/blender/inflate/SConscript b/source/blender/inflate/SConscript
new file mode 100644
index 00000000000..4ffb3b48ebc
--- /dev/null
+++ b/source/blender/inflate/SConscript
@@ -0,0 +1,20 @@
+inflate_env = Environment ()
+# TODO: add the option to build with Quicktime
+
+# Import the C flags set in the SConstruct file
+Import ('cflags')
+Import ('cxxflags')
+Import ('defines')
+Import ('extra_includes')
+inflate_env.Append (CCFLAGS = cflags)
+inflate_env.Append (CXXFLAGS = cxxflags)
+inflate_env.Append (CPPDEFINES = defines)
+
+source_files = ['intern/BLO_inflate.c']
+
+inflate_env.Append (CPPPATH = ['.',
+ '../../kernel/gen_messaging',
+ '../readstreamglue'])
+
+inflate_env.Append (CPPPATH = extra_includes)
+inflate_env.Library (target='#/lib/blender_inflate', source=source_files)