2018-09-29 12:46:26 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2018-09-29 12:46:26 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2018-09-29 12:46:26 +00:00
|
|
|
|
|
|
|
env_xatlas_unwrap = env_modules.Clone()
|
|
|
|
|
|
|
|
# Thirdparty source files
|
2020-12-17 15:01:36 +00:00
|
|
|
|
|
|
|
thirdparty_obj = []
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if env["builtin_xatlas"]:
|
2018-09-29 12:46:26 +00:00
|
|
|
thirdparty_dir = "#thirdparty/xatlas/"
|
|
|
|
thirdparty_sources = [
|
|
|
|
"xatlas.cpp",
|
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
|
2019-04-30 11:12:02 +00:00
|
|
|
env_xatlas_unwrap.Prepend(CPPPATH=[thirdparty_dir])
|
2018-09-29 12:46:26 +00:00
|
|
|
|
|
|
|
env_thirdparty = env_xatlas_unwrap.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
2020-12-17 15:01:36 +00:00
|
|
|
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
|
|
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
|
2018-09-29 12:46:26 +00:00
|
|
|
|
|
|
|
# Godot source files
|
2020-12-17 15:01:36 +00:00
|
|
|
|
|
|
|
module_obj = []
|
|
|
|
|
|
|
|
env_xatlas_unwrap.add_source_files(module_obj, "*.cpp")
|
|
|
|
env.modules_sources += module_obj
|
|
|
|
|
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
|
|
env.Depends(module_obj, thirdparty_obj)
|