mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-04 13:07:40 +08:00
11 lines
169 B
Python
11 lines
169 B
Python
|
import os
|
||
|
import platform
|
||
|
|
||
|
env=DefaultEnvironment().Clone()
|
||
|
LIB_DIR=os.environ['LIB_DIR'];
|
||
|
|
||
|
SOURCES=Glob("*.c")
|
||
|
|
||
|
env.Library(os.path.join(LIB_DIR, 'fribidi'), SOURCES)
|
||
|
|