2019-04-10 22:46:04 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2019-04-10 22:46:04 +02:00
|
|
|
|
|
|
|
env_vhacd = env_modules.Clone()
|
|
|
|
|
|
|
|
# Thirdparty source files
|
|
|
|
|
2020-12-17 16:01:36 +01:00
|
|
|
thirdparty_obj = []
|
|
|
|
|
2019-04-10 22:46:04 +02:00
|
|
|
thirdparty_dir = "#thirdparty/vhacd/"
|
|
|
|
|
|
|
|
thirdparty_sources = [
|
2019-07-03 09:16:20 +02:00
|
|
|
"src/vhacdManifoldMesh.cpp",
|
|
|
|
"src/FloatMath.cpp",
|
|
|
|
"src/vhacdMesh.cpp",
|
|
|
|
"src/vhacdICHull.cpp",
|
|
|
|
"src/vhacdVolume.cpp",
|
|
|
|
"src/VHACD-ASYNC.cpp",
|
|
|
|
"src/btAlignedAllocator.cpp",
|
|
|
|
"src/vhacdRaycastMesh.cpp",
|
|
|
|
"src/VHACD.cpp",
|
2020-03-30 08:28:32 +02:00
|
|
|
"src/btConvexHullComputer.cpp",
|
2019-04-10 22:46:04 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
|
2020-12-17 16:01:36 +01:00
|
|
|
env_vhacd.Prepend(CPPPATH=[thirdparty_dir + "inc"])
|
2019-04-10 22:46:04 +02:00
|
|
|
|
|
|
|
env_thirdparty = env_vhacd.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
2020-12-17 16:01:36 +01:00
|
|
|
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
|
|
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
|
|
|
|
# Godot source files
|
|
|
|
|
|
|
|
module_obj = []
|
|
|
|
|
|
|
|
env_vhacd.add_source_files(module_obj, "*.cpp")
|
|
|
|
env.modules_sources += module_obj
|
2019-04-10 22:46:04 +02:00
|
|
|
|
2020-12-17 16:01:36 +01:00
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
|
|
env.Depends(module_obj, thirdparty_obj)
|