awtk/3rd/libunibreak/SConscript

21 lines
329 B
Python
Raw Normal View History

2018-07-27 10:50:05 +08:00
import os
import platform
env=DefaultEnvironment().Clone()
LIB_DIR=os.environ['LIB_DIR'];
BIN_DIR=os.environ['BIN_DIR'];
SOURCES=[
2018-10-13 18:40:00 +08:00
"graphemebreak.c",
"linebreak.c",
"linebreakdef.c",
"unibreakbase.c",
"unibreakdef.c",
"wordbreak.c",
"emojidef.c",
"linebreakdata.c",
2018-07-27 10:50:05 +08:00
]
env.Library(os.path.join(LIB_DIR, 'linebreak'), SOURCES)