mirror of
https://github.com/Relintai/godot_fastnoise.git
synced 2024-11-12 10:15:21 +01:00
40841f565f
Scons doesn't seem to support the `SCONS_CXX_STANDARD` environ variable. Fixes #1
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"])
|