32 lines
		
	
	
		
			963 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			963 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # vim: set ts=2 sw=2 tw=99 noet ft=python: 
 | |
| import os
 | |
| 
 | |
| for i in SM.sdkInfo:
 | |
| 	sdk = SM.sdkInfo[i]
 | |
| 	if AMBuild.target['platform'] not in sdk['platform']:
 | |
| 		continue
 | |
| 
 | |
| 	compiler = SM.DefaultHL2Compiler('extensions/sdkhooks', i)
 | |
| 	compiler['CXXINCLUDES'].append(os.path.join(AMBuild.cache[sdk['sdk']], 'game', 'shared'))
 | |
| 
 | |
| 	if compiler.cc.name == 'gcc' or compiler.cc.name == 'clang':
 | |
| 		compiler['CFLAGS'].append('-Wno-parentheses')
 | |
| 		compiler['CXXFLAGS'].append('-Wno-invalid-offsetof')
 | |
| 
 | |
| 	name = 'sdkhooks.ext.' + sdk['ext']
 | |
| 	extension = AMBuild.AddJob(name)
 | |
| 	binary = Cpp.LibraryBuilder(name, AMBuild, extension, compiler)
 | |
| 	SM.PreSetupHL2Job(extension, binary, i)
 | |
| 	binary.AddSourceFiles('extensions/sdkhooks', [
 | |
| 		'extension.cpp',
 | |
| 		'natives.cpp',
 | |
| 		'takedamageinfohack.cpp',
 | |
| 		'util.cpp',
 | |
| 		'sdk/smsdk_ext.cpp',
 | |
| 		])
 | |
| 	SM.PostSetupHL2Job(extension, binary, i)
 | |
| 	SM.AutoVersion('extensions/sdkhooks', binary)
 | |
| 	SM.ExtractDebugInfo(extension, binary)
 | |
| 	binary.SendToJob()
 | |
| 
 |