2014-02-08 09:14:15 +00:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
if AMXX.mysql_path:
|
|
|
|
binary = AMXX.MetaModule(builder, 'mysql')
|
|
|
|
|
|
|
|
binary.compiler.cxxincludes += [
|
|
|
|
os.path.join(AMXX.mysql_path, 'include'),
|
|
|
|
os.path.join(builder.currentSourcePath, 'mysql'),
|
|
|
|
os.path.join(builder.currentSourcePath, 'thread'),
|
|
|
|
]
|
|
|
|
|
|
|
|
binary.compiler.defines += [
|
|
|
|
'SM_DEFAULT_THREADER',
|
2014-08-23 08:17:47 +00:00
|
|
|
'HAVE_STDINT_H',
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
|
2017-01-06 20:03:22 +00:00
|
|
|
binary.sources = []
|
|
|
|
|
2014-02-08 09:14:15 +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 22:49:03 +00:00
|
|
|
binary.compiler.linkflags += [
|
2014-02-08 09:14:15 +00:00
|
|
|
os.path.join(AMXX.mysql_path, 'lib', 'libmysqlclient_r.a'),
|
|
|
|
'-lpthread',
|
2017-11-26 19:34:40 +00:00
|
|
|
'-lm',
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
2017-11-26 19:43:20 +00:00
|
|
|
if builder.target_platform is 'linux':
|
|
|
|
binary.compiler.linkflags += [
|
|
|
|
'-lrt'
|
|
|
|
]
|
2014-02-08 09:14:15 +00:00
|
|
|
elif builder.target_platform is 'windows':
|
2014-02-08 22:49:03 +00:00
|
|
|
binary.compiler.linkflags += [
|
2017-10-31 22:06:30 +00:00
|
|
|
os.path.join(AMXX.mysql_path, 'lib', 'mysqlclient.lib'),
|
2017-12-07 17:45:16 +00:00
|
|
|
'ws2_32.lib',
|
|
|
|
'/EXPORT:GiveFnptrsToDll=_GiveFnptrsToDll@8,@1',
|
|
|
|
'/SECTION:.data,RW'
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
2017-01-06 20:03:22 +00:00
|
|
|
if binary.compiler.vendor == 'msvc' and binary.compiler.version >= 1900:
|
|
|
|
binary.compiler.linkflags += ['legacy_stdio_definitions.lib', 'legacy_stdio_wide_specifiers.lib']
|
|
|
|
binary.sources += [
|
|
|
|
'msvc15hack.c'
|
|
|
|
]
|
2014-02-08 09:14:15 +00:00
|
|
|
|
2015-02-02 20:51:06 +00:00
|
|
|
binary.compiler.linkflags += [AMXX.zlib.binary]
|
2017-01-06 20:03:22 +00:00
|
|
|
|
|
|
|
binary.sources += [
|
2014-02-08 09:14:15 +00:00
|
|
|
'basic_sql.cpp',
|
|
|
|
'handles.cpp',
|
|
|
|
'module.cpp',
|
|
|
|
'threading.cpp',
|
2014-08-10 10:27:05 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'oldcompat_sql.cpp',
|
|
|
|
'thread/BaseWorker.cpp',
|
|
|
|
'thread/ThreadWorker.cpp',
|
|
|
|
'mysql/MysqlQuery.cpp',
|
|
|
|
'mysql/MysqlResultSet.cpp',
|
|
|
|
'mysql/MysqlDatabase.cpp',
|
|
|
|
'mysql/MysqlDriver.cpp',
|
|
|
|
]
|
|
|
|
|
2014-12-08 00:44:27 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += ['version.rc']
|
2017-01-06 20:03:22 +00:00
|
|
|
|
2014-02-13 08:13:43 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += [
|
|
|
|
'thread/WinThreads.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
binary.sources += [
|
|
|
|
'thread/PosixThreads.cpp',
|
|
|
|
]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|