import os

Import('env')

module_env = env.Clone()

sources = [
    "register_types.cpp",

    "http_server_simple.cpp",
    "web_server_simple.cpp",
    "simple_web_server_request.cpp",
    "http_parser.cpp",
    "http_writer.cpp",
    "http_parser/http_parser.c",
    "multipart_parser_c/multipart_parser.c",
]

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/http_server_simple', 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)