blob: 04cc8ed6041d11c4e1b1d712f667a38e3f49385b (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python
Import('env')
Import('env_modules')
env_vsdecoder_gdnative = env_modules.Clone()
env_vsdecoder_gdnative.Prepend(CPPPATH=['#modules/gdnative/include/'])
env_vsdecoder_gdnative.add_source_files(env.modules_sources, '*.cpp')
|