diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-19 01:03:11 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-19 01:03:38 +0100 |
commit | a5c52c1e38a591847f694cb2a54428cd3a82386a (patch) | |
tree | dd75891d770224b412e1a163e0879a32b45581fa /modules/noise/SCsub | |
parent | ab4c5a594ab11cf6446fa819de639bb71de9ccbf (diff) | |
download | redot-engine-a5c52c1e38a591847f694cb2a54428cd3a82386a.tar.gz |
FastNoiseLite: Sync with 1.1.0, clean up SCsub
Doesn't fix the LTO warning about `-Waggressive-loop-optimizations`
due to GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80922.
Diffstat (limited to 'modules/noise/SCsub')
-rw-r--r-- | modules/noise/SCsub | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/noise/SCsub b/modules/noise/SCsub index 1430aa0c4e..f309fd2dd4 100644 --- a/modules/noise/SCsub +++ b/modules/noise/SCsub @@ -5,23 +5,9 @@ Import("env_modules") env_noise = env_modules.Clone() -# Thirdparty source files - -thirdparty_obj = [] - thirdparty_dir = "#thirdparty/noise/" -thirdparty_sources = [ - # Add C++ source files for noise modules here -] -thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] - env_noise.Prepend(CPPPATH=[thirdparty_dir]) -env_thirdparty = env_noise.Clone() -env_thirdparty.disable_warnings() -env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources) -env.modules_sources += thirdparty_obj - # Godot source files module_obj = [] @@ -29,6 +15,3 @@ module_obj = [] env_noise.add_source_files(module_obj, "*.cpp") env_noise.add_source_files(module_obj, "editor/*.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) |