diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-14 07:35:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 07:35:02 +0100 |
commit | fe49eaa54479ac1e568bd204cabc854930936a07 (patch) | |
tree | 576d8a3a04b752f74f205dbfbf44cb3a8fead55c /modules/meshoptimizer/SCsub | |
parent | b006fafad9d5439b7597d4794a00b38386a5f2f5 (diff) | |
parent | 77a045e902db9f5f0ea7961e827c337541a6436c (diff) |
Merge pull request #44319 from reduz/integrate-meshoptimizer
Rework Mesh handling on scene importing.
Diffstat (limited to 'modules/meshoptimizer/SCsub')
-rw-r--r-- | modules/meshoptimizer/SCsub | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/modules/meshoptimizer/SCsub b/modules/meshoptimizer/SCsub new file mode 100644 index 0000000000..3b1a5f917e --- /dev/null +++ b/modules/meshoptimizer/SCsub @@ -0,0 +1,34 @@ +#!/usr/bin/env python + +Import("env") +Import("env_modules") + +env_meshoptimizer = env_modules.Clone() + +# Thirdparty source files +thirdparty_dir = "#thirdparty/meshoptimizer/" +thirdparty_sources = [ + "allocator.cpp", + "clusterizer.cpp", + "indexcodec.cpp", + "indexgenerator.cpp", + "overdrawanalyzer.cpp", + "overdrawoptimizer.cpp", + "simplifier.cpp", + "spatialorder.cpp", + "stripifier.cpp", + "vcacheanalyzer.cpp", + "vcacheoptimizer.cpp", + "vertexcodec.cpp", + "vertexfilter.cpp", + "vfetchanalyzer.cpp", + "vfetchoptimizer.cpp", +] +thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + + +env_thirdparty = env_meshoptimizer.Clone() +env_thirdparty.disable_warnings() +env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources) + +env_modules.add_source_files(env.modules_sources, ["register_types.cpp"]) |