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 'intern/container/SConscript')
-rw-r--r--intern/container/SConscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/intern/container/SConscript b/intern/container/SConscript
new file mode 100644
index 00000000000..d916e7e221c
--- /dev/null
+++ b/intern/container/SConscript
@@ -0,0 +1,15 @@
+cont_env = Environment()
+
+# Import the C flags set in the SConstruct file
+Import ('cflags')
+Import ('cxxflags')
+Import ('defines')
+cont_env.Append (CCFLAGS = cflags)
+cont_env.Append (CXXFLAGS = cxxflags)
+cont_env.Append (CPPDEFINES = defines)
+
+source_files = ['intern/CTR_List.cpp']
+
+cont_env.Append (CPPPATH = ['.'])
+
+cont_env.Library (target='#/lib/blender_CTR', source=source_files)