Make the Windows binaries build.

This commit is contained in:
dg
2023-10-25 21:55:40 +00:00
parent c7f22c0dab
commit 26bd467f79
5 changed files with 45 additions and 6 deletions

9
dep/emu/build.py Normal file
View File

@@ -0,0 +1,9 @@
from build.c import clibrary
clibrary(
name="emu",
srcs=["./fnmatch.c"],
hdrs={
"fnmatch.h": "./fnmatch.h"
}
)