virtualx-engine/modules/gdnative/nativescript/SCsub
2017-09-03 15:28:43 +02:00

10 lines
224 B
Python

#!/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')