35 lines
		
	
	
		
			911 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			911 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # vim: set ts=8 sts=2 sw=2 tw=99 et ft=python: 
 | |
| import os, sys
 | |
| 
 | |
| builder.SetBuildFolder('/')
 | |
| 
 | |
| includes = builder.AddFolder('includes')
 | |
| 
 | |
| argv = [
 | |
|   sys.executable,
 | |
|   os.path.join(builder.sourcePath, 'tools', 'buildbot', 'generate_headers.py'),
 | |
|   os.path.join(builder.sourcePath),
 | |
|   os.path.join(builder.buildPath, 'includes'),
 | |
| ]
 | |
| outputs = [
 | |
|   os.path.join(builder.buildFolder, 'includes', 'sourcemod_version_auto.h'),
 | |
|   os.path.join(builder.buildFolder, 'includes', 'version_auto.inc'),
 | |
| ]
 | |
| 
 | |
| sources = [
 | |
|   os.path.join(builder.sourcePath, 'product.version'),
 | |
| 
 | |
|   # This is a hack, but we need some way to only run this script when HG changes.
 | |
|   os.path.join(builder.sourcePath, '.hg', 'dirstate'),
 | |
| 
 | |
|   # The script source is a dependency, of course...
 | |
|   argv[1]
 | |
| ]
 | |
| cmd_node, output_nodes = builder.AddCommand(
 | |
|   inputs=sources,
 | |
|   argv=argv,
 | |
|   outputs=outputs
 | |
| )
 | |
| 
 | |
| rvalue = output_nodes
 |