summaryrefslogtreecommitdiffstats
path: root/modules/noise/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-19 01:03:11 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-19 01:03:38 +0100
commita5c52c1e38a591847f694cb2a54428cd3a82386a (patch)
treedd75891d770224b412e1a163e0879a32b45581fa /modules/noise/SCsub
parentab4c5a594ab11cf6446fa819de639bb71de9ccbf (diff)
downloadredot-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/SCsub17
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)