summaryrefslogtreecommitdiff
path: root/modules/nativescript/SCsub
blob: e980e40e8ec3f593279b2d78271182dfddb815f8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/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')