12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # vim: set sts=2 ts=8 sw=2 tw=99 et
- import
- projectName
- sourceFiles
- 'mmsplugin.cpp',
- 'econmanager.cpp',
- 'natives.cpp',
- ]
- pluginFiles
- 'tf_econ_dynamic_compat.sp'
- ]
- spcomp_argv
- Extension.spcomp_bin,
- '-i' + os.path.relpath(os.path.join(builder.sourcePath, 'scripting', 'include'),
- os.path.join(builder.buildPath, builder.buildFolder)),
- '-h',
- '-E',
- ]
- ###############
- # Make
- # Simple
- project
- if
- # Use
- project.sources
- else:
- # Use
- project.sources
- project.sources
-
- for
- sdk
-
- binary
- def
- inputs
- Extension.spcomp_bin,
- script_path,
- ]
- outputs
- smx_file
- ]
- argv
- result
- inputs
- argv
- outputs
- dep_type
- )
- # ???
- (smx_command, smx_outputs) = result
- out, *_ = smx_outputs
- Extension.plugins[smx_file] = out
- for
- script_path
- smx_file
- build_plugin(script_path, smx_file)
- Extension.extensions
|