forked from bartvdbraak/blender
d5fde6c48b
Makes text editors identify SConscripts as Python, and syntax highlight properly.
14 lines
379 B
Python
Executable File
14 lines
379 B
Python
Executable File
#!/usr/bin/python
|
|
Import ('user_options_dict')
|
|
Import ('library_env')
|
|
|
|
phy_dummy_env = library_env.Copy ()
|
|
|
|
source_files = ['DummyPhysicsEnvironment.cpp']
|
|
|
|
phy_dummy_env.Append (CPPPATH = ['.',
|
|
'../common'
|
|
])
|
|
|
|
phy_dummy_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/PHY_Dummy', source=source_files)
|