blob: 8d9c1ff50e68943b50d0dfb45dbd06c1e98b51b2 (
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.Append(CPPPATH=['#modules/gdnative/include/'])
env_vsdecoder_gdnative.add_source_files(env.modules_sources, '*.cpp')
|