2018-08-25 06:25:06 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2018-09-28 19:29:52 +08:00
|
|
|
|
2022-03-20 21:53:45 +08:00
|
|
|
env_noise = env_modules.Clone()
|
2018-09-28 19:29:52 +08:00
|
|
|
|
|
|
|
# Thirdparty source files
|
2020-12-17 23:01:36 +08:00
|
|
|
|
|
|
|
thirdparty_obj = []
|
|
|
|
|
2022-03-20 21:53:45 +08:00
|
|
|
thirdparty_dir = "#thirdparty/noise/"
|
2018-09-28 19:29:52 +08:00
|
|
|
thirdparty_sources = [
|
2022-03-20 21:53:45 +08:00
|
|
|
# Add C++ source files for noise modules here
|
2018-09-28 19:29:52 +08:00
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
|
2022-03-20 21:53:45 +08:00
|
|
|
env_noise.Prepend(CPPPATH=[thirdparty_dir])
|
2018-09-28 19:29:52 +08:00
|
|
|
|
2022-03-20 21:53:45 +08:00
|
|
|
env_thirdparty = env_noise.Clone()
|
2018-09-28 19:29:52 +08:00
|
|
|
env_thirdparty.disable_warnings()
|
2020-12-17 23:01:36 +08:00
|
|
|
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
|
|
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
|
|
|
|
# Godot source files
|
|
|
|
|
|
|
|
module_obj = []
|
|
|
|
|
2022-03-20 21:53:45 +08:00
|
|
|
env_noise.add_source_files(module_obj, "*.cpp")
|
2022-04-20 01:48:25 +08:00
|
|
|
env_noise.add_source_files(module_obj, "editor/*.cpp")
|
2020-12-17 23:01:36 +08:00
|
|
|
env.modules_sources += module_obj
|
2018-09-28 19:29:52 +08:00
|
|
|
|
2020-12-17 23:01:36 +08:00
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
|
|
env.Depends(module_obj, thirdparty_obj)
|