SCons: Begin decoupling generation & build code

This commit is contained in:
Thaddeus Crews
2025-04-21 11:07:42 -05:00
parent 28089c40c1
commit 5c9f93ce03
16 changed files with 489 additions and 454 deletions

View File

@ -0,0 +1,21 @@
"""Functions used to generate source files during build time"""
import methods
def make_icu_data(target, source, env):
buffer = methods.get_buffer(str(source[0]))
with methods.generated_wrapper(str(target[0])) as file:
file.write(f"""\
/* (C) 2016 and later: Unicode, Inc. and others. */
/* License & terms of use: https://www.unicode.org/copyright.html */
#include <unicode/utypes.h>
#include <unicode/udata.h>
#include <unicode/uversion.h>
extern "C" U_EXPORT const size_t U_ICUDATA_SIZE = {len(buffer)};
extern "C" U_EXPORT const unsigned char U_ICUDATA_ENTRY_POINT[] = {{
{methods.format_buffer(buffer, 1)}
}};
""")