mirror of
https://github.com/audacity/mezzo.git
synced 2026-02-04 03:56:12 -06:00
17 lines
279 B
Python
17 lines
279 B
Python
|
|
Import('env')
|
|
|
|
expat_files = [
|
|
"expat/xmlparse.c",
|
|
"expat/xmltok.c",
|
|
"expat/xmlrole.c"
|
|
]
|
|
|
|
posh_files = [
|
|
"posh/posh.c"
|
|
]
|
|
|
|
env.StaticLibrary("expat", source = expat_files)
|
|
|
|
env.StaticLibrary("posh", source = posh_files)
|