2018-08-25 00:25:06 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2018-09-28 13:29:52 +02:00
|
|
|
|
2022-03-20 14:53:45 +01:00
|
|
|
env_noise = env_modules.Clone()
|
2018-09-28 13:29:52 +02:00
|
|
|
|
|
|
|
# Thirdparty source files
|
2020-12-17 16:01:36 +01:00
|
|
|
|
|
|
|
thirdparty_obj = []
|
|
|
|
|
2022-03-20 14:53:45 +01:00
|
|
|
thirdparty_dir = "#thirdparty/noise/"
|
2018-09-28 13:29:52 +02:00
|
|
|
thirdparty_sources = [
|
2022-03-20 14:53:45 +01:00
|
|
|
# Add C++ source files for noise modules here
|
2018-09-28 13:29:52 +02:00
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
|
2022-03-20 14:53:45 +01:00
|
|
|
env_noise.Prepend(CPPPATH=[thirdparty_dir])
|
2018-09-28 13:29:52 +02:00
|
|
|
|
2022-03-20 14:53:45 +01:00
|
|
|
env_thirdparty = env_noise.Clone()
|
2018-09-28 13:29:52 +02:00
|
|
|
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 = []
|
|
|
|
|
2022-03-20 14:53:45 +01:00
|
|
|
env_noise.add_source_files(module_obj, "*.cpp")
|
2020-12-17 16:01:36 +01:00
|
|
|
env.modules_sources += module_obj
|
2018-09-28 13:29:52 +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)
|