mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00: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)
|
|
|