From 80d7a252001b1eddf2684b00b566f47c990254e1 Mon Sep 17 00:00:00 2001 From: taynpg Date: Thu, 13 Feb 2025 13:40:51 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=AD=A3=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- def_gen.bat | 2 +- def_gen.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/def_gen.bat b/def_gen.bat index 27389d5..367cde7 100644 --- a/def_gen.bat +++ b/def_gen.bat @@ -12,7 +12,7 @@ if not exist %EXPORT_DIR% ( mkdir %EXPORT_DIR% ) copy /Y %BUILD_BIN%\mlua.exe %MLUA_EXE% -%GENDEF_EXE% %FS_LIB% lua_ls %EXPORT_DIR% +%GENDEF_EXE% %FS_LIB% lua_fs %EXPORT_DIR% copy /Y %BUILD_BIN%\lua_fs.dll %EXPORT_DIR% echo ɡ endlocal diff --git a/def_gen.sh b/def_gen.sh index b108376..0fdf7ee 100755 --- a/def_gen.sh +++ b/def_gen.sh @@ -16,7 +16,7 @@ mkdir -p "$EXPORT_DIR" cp -f "$BUILD_BIN/mlua" "$MLUA_EXE" # 运行 gendef -"$GENDEF_EXE" "$FS_LIB" lua_ls "$EXPORT_DIR" +"$GENDEF_EXE" "$FS_LIB" lua_fs "$EXPORT_DIR" # 复制 lua_fs 动态库 cp -f "$LIB_DIR/liblua_fs.so" "$EXPORT_DIR/lua_fs.so"