48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
 | 
						|
import os.path
 | 
						|
 | 
						|
binary = AMXX.MetaModule(builder, 'sqlite')
 | 
						|
binary.compiler.cxxincludes += [
 | 
						|
  os.path.join(builder.currentSourcePath, 'sqlitepp'),
 | 
						|
  os.path.join(builder.currentSourcePath, 'thread'),
 | 
						|
  os.path.join(builder.currentSourcePath, 'sqlite-source'),
 | 
						|
]
 | 
						|
binary.compiler.defines += [
 | 
						|
  'SM_DEFAULT_THREADER',
 | 
						|
  'HAVE_STDINT_H',
 | 
						|
]
 | 
						|
 | 
						|
if builder.target_platform is 'linux' or builder.target_platform is 'mac':
 | 
						|
  binary.compiler.defines += ['stricmp=strcasecmp']
 | 
						|
  binary.compiler.postlink += ['-lpthread']
 | 
						|
 | 
						|
binary.sources += [
 | 
						|
  'basic_sql.cpp',
 | 
						|
  'handles.cpp',
 | 
						|
  'module.cpp',
 | 
						|
  'threading.cpp',
 | 
						|
  '../../public/sdk/amxxmodule.cpp',
 | 
						|
  'oldcompat_sql.cpp',
 | 
						|
  'thread/BaseWorker.cpp',
 | 
						|
  'thread/ThreadWorker.cpp',
 | 
						|
  'sqlitepp/SqliteQuery.cpp',
 | 
						|
  'sqlitepp/SqliteResultSet.cpp',
 | 
						|
  'sqlitepp/SqliteDatabase.cpp',
 | 
						|
  'sqlitepp/SqliteDriver.cpp',
 | 
						|
  'sqlite-source/sqlite3.c',
 | 
						|
]
 | 
						|
 | 
						|
if builder.target_platform == 'windows':
 | 
						|
  binary.sources += [
 | 
						|
    'thread/WinThreads.cpp',
 | 
						|
  ]
 | 
						|
else:
 | 
						|
  binary.sources += [
 | 
						|
    'thread/PosixThreads.cpp',
 | 
						|
  ]
 | 
						|
 | 
						|
if builder.target_platform == 'windows':
 | 
						|
  binary.sources += ['version.rc']
 | 
						|
 | 
						|
AMXX.modules += [builder.Add(binary)]
 |