blob: 53f9271128f10e25f2eb2950c873d276d12db867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env python
import os
import methods
Import('env')
Import('env_modules')
env_net_gdnative = env_modules.Clone()
env_net_gdnative.Append(CPPPATH=['#modules/gdnative/include/'])
env_net_gdnative.add_source_files(env.modules_sources, '*.cpp')
|