2022-06-25 01:55:54 +02:00
|
|
|
import os
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
|
|
module_env = env.Clone()
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
|
|
|
|
"register_types.cpp",
|
|
|
|
|
2022-06-27 12:28:36 +02:00
|
|
|
"file_cache.cpp",
|
|
|
|
|
2022-06-27 14:59:09 +02:00
|
|
|
"http/csrf_token.cpp",
|
|
|
|
"http/http_server_enums.cpp",
|
|
|
|
"http/http_session.cpp",
|
|
|
|
"http/http_session_manager.cpp",
|
|
|
|
"http/web_node.cpp",
|
|
|
|
"http/web_permission.cpp",
|
|
|
|
"http/web_root.cpp",
|
|
|
|
"http/web_server.cpp",
|
|
|
|
"http/web_server_cookie.cpp",
|
|
|
|
"http/web_server_middleware.cpp",
|
|
|
|
"http/web_server_request.cpp",
|
|
|
|
|
2022-06-25 01:55:54 +02:00
|
|
|
"html/html_builder_bind.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/web', 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)
|
|
|
|
|