13 lines
258 B
Python
13 lines
258 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import methods
|
|
|
|
Import('env')
|
|
Import('env_modules')
|
|
|
|
env_arvr_gdnative = env_modules.Clone()
|
|
|
|
env_arvr_gdnative.Append(CPPPATH=['#modules/gdnative/include/'])
|
|
env_arvr_gdnative.add_source_files(env.modules_sources, '*.cpp')
|
|
|