diff options
Diffstat (limited to 'modules/gdnative/videodecoder/SCsub')
-rw-r--r-- | modules/gdnative/videodecoder/SCsub | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdnative/videodecoder/SCsub b/modules/gdnative/videodecoder/SCsub new file mode 100644 index 0000000000..51b0418d6b --- /dev/null +++ b/modules/gdnative/videodecoder/SCsub @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +import os +import methods + +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') |