Browse Source

scripts: gha: win32: fix build type from debug to release

pull/2/head
Alibek Omarov 2 years ago committed by GitHub
parent
commit
772f4dcb60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      scripts/gha/build_win32.sh

2
scripts/gha/build_win32.sh

@ -11,7 +11,7 @@ fi
# NOTE: to build with other version use --msvc_version during configuration # NOTE: to build with other version use --msvc_version during configuration
# NOTE: sometimes you may need to add WinSDK to %PATH% # NOTE: sometimes you may need to add WinSDK to %PATH%
./waf.bat configure -s "SDL2_VC" -T "debug" --enable-utils --prefix=`pwd` $AMD64 || die ./waf.bat configure -s "SDL2_VC" -T "release" --enable-utils --prefix=`pwd` $AMD64 || die
./waf.bat build -v || die ./waf.bat build -v || die
./waf.bat install || die ./waf.bat install || die

Loading…
Cancel
Save