2014-02-08 09:14:15 +00:00
|
|
|
# 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'),
|
2015-03-13 10:13:42 +00:00
|
|
|
os.path.join(builder.currentSourcePath, '..', '..', 'third_party', 'sqlite'),
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
binary.compiler.defines += [
|
|
|
|
'SM_DEFAULT_THREADER',
|
2014-08-10 15:24:38 +00:00
|
|
|
'HAVE_STDINT_H',
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
|
2015-01-06 22:27:51 +00:00
|
|
|
if builder.target_platform is 'linux' or builder.target_platform is 'mac':
|
2014-12-06 12:59:13 +00:00
|
|
|
binary.compiler.defines += ['stricmp=strcasecmp']
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.compiler.postlink += ['-lpthread']
|
|
|
|
|
2014-02-09 00:09:29 +00:00
|
|
|
binary.sources += [
|
2014-02-08 09:14:15 +00:00
|
|
|
'basic_sql.cpp',
|
|
|
|
'handles.cpp',
|
|
|
|
'module.cpp',
|
|
|
|
'threading.cpp',
|
2014-08-10 15:24:38 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'oldcompat_sql.cpp',
|
|
|
|
'thread/BaseWorker.cpp',
|
|
|
|
'thread/ThreadWorker.cpp',
|
|
|
|
'sqlitepp/SqliteQuery.cpp',
|
|
|
|
'sqlitepp/SqliteResultSet.cpp',
|
|
|
|
'sqlitepp/SqliteDatabase.cpp',
|
|
|
|
'sqlitepp/SqliteDriver.cpp',
|
2015-03-13 10:13:42 +00:00
|
|
|
'../../third_party/sqlite/sqlite3.c',
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
|
2014-02-09 00:09:29 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += [
|
|
|
|
'thread/WinThreads.cpp',
|
2017-12-07 17:45:16 +00:00
|
|
|
'version.rc'
|
|
|
|
]
|
|
|
|
binary.compiler.linkflags += [
|
|
|
|
'/EXPORT:GiveFnptrsToDll=_GiveFnptrsToDll@8,@1',
|
|
|
|
'/SECTION:.data,RW',
|
2014-02-09 00:09:29 +00:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
binary.sources += [
|
|
|
|
'thread/PosixThreads.cpp',
|
|
|
|
]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|