初始化提交

This commit is contained in:
2025-07-09 01:08:35 +08:00
parent d3296791cf
commit 62e0f56c60
618 changed files with 173543 additions and 0 deletions

View File

@ -0,0 +1,15 @@
mkdir build_win32 & pushd build_win32
cmake -G "Visual Studio 16 2019" ..
popd
cmake --build build_win32 --config RelWithDebInfo
md Library\Win32
copy /Y build_win32\RelWithDebInfo\lua.lib Library\Win32\lua.lib
copy /Y build_win32\RelWithDebInfo\lua.pdb Library\Win32\lua.pdb
mkdir build_win64 & pushd build_win64
cmake -G "Visual Studio 16 2019" -A x64 ..
popd
cmake --build build_win64 --config RelWithDebInfo
md Library\Win64
copy /Y build_win64\RelWithDebInfo\lua.lib Library\Win64\lua.lib
copy /Y build_win32\RelWithDebInfo\lua.pdb Library\Win64\lua.pdb