mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-04 21:17:50 +08:00
20 lines
343 B
Python
20 lines
343 B
Python
import os
|
|
import platform
|
|
|
|
env=DefaultEnvironment().Clone()
|
|
LIB_DIR=os.environ['LIB_DIR'];
|
|
BIN_DIR=os.environ['BIN_DIR'];
|
|
|
|
SOURCES=[
|
|
"src/graphemebreak.c",
|
|
"src/linebreak.c",
|
|
"src/linebreakdef.c",
|
|
"src/unibreakbase.c",
|
|
"src/unibreakdef.c",
|
|
"src/wordbreak.c",
|
|
"src/linebreakdata.c",
|
|
]
|
|
|
|
env.Library(os.path.join(LIB_DIR, 'linebreak'), SOURCES)
|
|
|