eden/.ci/windows/build-amd64.bat
crueter a1087ddec8
Some checks failed
eden-build / source (push) Successful in 3m45s
eden-build / android (push) Successful in 23m37s
eden-build / linux (push) Successful in 20m43s
eden-build / windows (msvc) (push) Failing after 15m29s
Updated CI for GH Actions Builds
Signed-off-by: crueter <swurl@swurl.xyz>
2025-06-28 22:22:45 -04:00

25 lines
551 B
Batchfile
Executable file

@echo off
set chain=%1
if not defined DevEnvDir (
CALL "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" %chain%
)
CALL mkdir build
CALL cmake -S . -B build\%chain% ^
-DCMAKE_BUILD_TYPE=Release ^
-DENABLE_QT_TRANSLATION=ON ^
-DUSE_DISCORD_PRESENCE=ON ^
-DYUZU_USE_BUNDLED_QT=ON ^
-DYUZU_USE_QT_MULTIMEDIA=ON ^
-DYUZU_USE_QT_WEB_ENGINE=ON ^
-DYUZU_USE_BUNDLED_VCPKG=ON ^
-DYUZU_USE_BUNDLED_SDL2=ON ^
-DYUZU_ENABLE_LTO=ON ^
-DUSE_CCACHE=ON ^
-G "Ninja" ^
-DYUZU_TESTS=OFF
CALL cmake --build build\%chain%