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/gameengine/Physics/Dummy/SConscript')
-rwxr-xr-xsource/gameengine/Physics/Dummy/SConscript17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/gameengine/Physics/Dummy/SConscript b/source/gameengine/Physics/Dummy/SConscript
new file mode 100755
index 00000000000..746c16bb9f3
--- /dev/null
+++ b/source/gameengine/Physics/Dummy/SConscript
@@ -0,0 +1,17 @@
+phy_dummy_env = Environment()
+
+# Import the C flags set in the SConstruct file
+Import ('cflags')
+Import ('cxxflags')
+Import ('defines')
+phy_dummy_env.Append (CCFLAGS = cflags)
+phy_dummy_env.Append (CXXFLAGS = cxxflags)
+phy_dummy_env.Append (CPPDEFINES = defines)
+
+source_files = ['DummyPhysicsEnvironment.cpp']
+
+phy_dummy_env.Append (CPPPATH = ['.',
+ '../common'
+ ])
+
+phy_dummy_env.Library (target='#/lib/PHY_Dummy', source=source_files)