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
|
|
|
|
|
|
|
|
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]
|
|
|
|
|
2019-04-30 13:12:02 +02: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()
|
|
|
|
env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources)
|
|
|
|
|
|
|
|
env_vhacd.add_source_files(env.modules_sources, "*.cpp")
|