2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2016-10-15 10:39:28 +00:00
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
|
|
|
2017-04-28 17:28:21 +00:00
|
|
|
# Thirdparty dependencies
|
|
|
|
thirdparty_dir = "#thirdparty/b2d_convexdecomp/"
|
|
|
|
thirdparty_sources = [
|
|
|
|
"b2Polygon.cpp",
|
|
|
|
"b2Triangle.cpp",
|
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
env.add_source_files(env.drivers_sources, thirdparty_sources)
|
|
|
|
|
2016-10-15 10:39:28 +00:00
|
|
|
Export('env')
|