mirror of
https://github.com/Relintai/godot_fastnoise.git
synced 2025-02-04 16:16:07 +01:00
10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
module_env.add_source_files(env.modules_sources,"*.cpp")
|
|
module_env.add_source_files(env.modules_sources,"lib/*.cpp")
|
|
|
|
# FastNoise uses a few C++11 features
|
|
module_env.Append(CPPFLAGS=["-std=c++11"])
|