mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
21 lines
329 B
Python
21 lines
329 B
Python
import os
|
|
import platform
|
|
|
|
env=DefaultEnvironment().Clone()
|
|
LIB_DIR=os.environ['LIB_DIR'];
|
|
BIN_DIR=os.environ['BIN_DIR'];
|
|
|
|
SOURCES=[
|
|
"graphemebreak.c",
|
|
"linebreak.c",
|
|
"linebreakdef.c",
|
|
"unibreakbase.c",
|
|
"unibreakdef.c",
|
|
"wordbreak.c",
|
|
"emojidef.c",
|
|
"linebreakdata.c",
|
|
]
|
|
|
|
env.Library(os.path.join(LIB_DIR, 'linebreak'), SOURCES)
|
|
|