22 lines
		
	
	
		
			802 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			802 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# vim: set ts=2 sw=2 tw=99 noet ft=python: 
 | 
						|
import os
 | 
						|
 | 
						|
compiler = SM.DefaultExtCompiler('extensions/sqlite')
 | 
						|
compiler['CXXINCLUDES'].append(os.path.join(SM.mmsPath, 'core', 'sourcehook'))
 | 
						|
 | 
						|
compiler['CDEFINES'].extend(['SQLITE_OMIT_LOAD_EXTENSION', 'SQLITE_THREADSAFE'])
 | 
						|
if AMBuild.target['platform'] == 'linux':
 | 
						|
	compiler['POSTLINKFLAGS'].extend(['-ldl', '-lpthread'])
 | 
						|
 | 
						|
extension = AMBuild.AddJob('dbi.sqlite.ext')
 | 
						|
binary = Cpp.LibraryBuilder('dbi.sqlite.ext', AMBuild, extension, compiler)
 | 
						|
files = [
 | 
						|
	'sdk/smsdk_ext.cpp', 'sdk/sm_memtable.cpp', 'extension.cpp',
 | 
						|
	'driver/SqDatabase.cpp', 'driver/SqDriver.cpp', 'driver/SqQuery.cpp',
 | 
						|
	'driver/SqResults.cpp', 'sqlite-source/sqlite3.c'
 | 
						|
	]
 | 
						|
binary.AddSourceFiles('extensions/sqlite', files)
 | 
						|
SM.AutoVersion('extensions/sqlite', binary)
 | 
						|
binary.SendToJob()
 | 
						|
 |