2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
2016-10-15 12:39:28 +02:00
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
|
|
|
2017-04-28 19:28:21 +02: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 12:39:28 +02:00
|
|
|
Export('env')
|