mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
34 lines
826 B
Plaintext
34 lines
826 B
Plaintext
import os
|
|
import version
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"database.cpp",
|
|
"database_connection.cpp",
|
|
"database_manager.cpp",
|
|
"database_multi_threaded.cpp",
|
|
"database_single_threaded.cpp",
|
|
"query_builder.cpp",
|
|
"query_result.cpp",
|
|
"table_builder.cpp",
|
|
"prepared_statement.cpp",
|
|
]
|
|
|
|
if ARGUMENTS.get('custom_modules_shared', 'no') == 'yes':
|
|
# Shared lib compilation
|
|
module_env.Append(CCFLAGS=['-fPIC'])
|
|
module_env['LIBS'] = []
|
|
shared_lib = module_env.SharedLibrary(target='#bin/database', source=sources)
|
|
shared_lib_shim = shared_lib[0].name.rsplit('.', 1)[0]
|
|
env.Append(LIBS=[shared_lib_shim])
|
|
env.Append(LIBPATH=['#bin'])
|
|
else:
|
|
# Static compilation
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|