29 lines
		
	
	
		
			863 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			863 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
 | 
						|
import os, sys
 | 
						|
 | 
						|
projectName = 'sample'
 | 
						|
 | 
						|
# smsdk_ext.cpp will be automatically added later
 | 
						|
sourceFiles = [
 | 
						|
  'extension.cpp',
 | 
						|
]
 | 
						|
 | 
						|
###############
 | 
						|
# Make sure to edit PackageScript, which copies your files to their appropriate locations
 | 
						|
# Simple extensions do not need to modify past this point.
 | 
						|
 | 
						|
project = Extension.HL2Project(builder, projectName + '.ext')
 | 
						|
 | 
						|
if os.path.isfile(os.path.join(builder.currentSourcePath, 'sdk', 'smsdk_ext.cpp')):
 | 
						|
  # Use the copy included in the project
 | 
						|
  project.sources += [os.path.join('sdk', 'smsdk_ext.cpp')]
 | 
						|
else:
 | 
						|
  # Use the copy included with SM 1.6 and newer
 | 
						|
  project.sources += [os.path.join(Extension.sm_root, 'public', 'smsdk_ext.cpp')]
 | 
						|
 | 
						|
project.sources += sourceFiles
 | 
						|
 | 
						|
binary = Extension.HL2Config(project, projectName + '.ext')
 | 
						|
 | 
						|
Extension.extensions = builder.Add(project)
 |