diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-12-14 00:16:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-14 00:16:37 +0100 |
commit | d23b8719f4b49b94d4f57c641963d3135b6ff9c3 (patch) | |
tree | 8cda63d160f847650929cf7e45c924b3b6c4038d /drivers/convex_decomp/SCsub | |
parent | f18cb896813eea88a93829ca585b9cb6fe76950f (diff) | |
parent | f111d1aaede1b2036e63d5a44ecd0ecf057521c3 (diff) |
Merge pull request #34340 from akien-mga/drop-box2d-convexdecomp
Drop b2d_convexdecomp, no longer necessary.
Diffstat (limited to 'drivers/convex_decomp/SCsub')
-rw-r--r-- | drivers/convex_decomp/SCsub | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/convex_decomp/SCsub b/drivers/convex_decomp/SCsub deleted file mode 100644 index 65ba5332b7..0000000000 --- a/drivers/convex_decomp/SCsub +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python - -Import('env') - -env.add_source_files(env.drivers_sources, "*.cpp") - -# Thirdparty dependencies -thirdparty_dir = "#thirdparty/b2d_convexdecomp/" -thirdparty_sources = [ - "b2Polygon.cpp", - "b2Triangle.cpp", -] -thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] - -env_thirdparty = env.Clone() -env_thirdparty.disable_warnings() -env_thirdparty.add_source_files(env.drivers_sources, thirdparty_sources) |