mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
11 lines
224 B
Text
11 lines
224 B
Text
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
Import('env')
|
||
|
|
|
||
|
|
mod_env = env.Clone()
|
||
|
|
mod_env.add_source_files(env.modules_sources, "*.cpp")
|
||
|
|
mod_env.Append(CPPPATH='#modules/gdnative')
|
||
|
|
mod_env.Append(CPPFLAGS=['-DGDAPI_BUILT_IN'])
|
||
|
|
|
||
|
|
Export('mod_env')
|