Skip to content

Commit

Permalink
Vutils
Browse files Browse the repository at this point in the history
  • Loading branch information
vic4key committed Nov 14, 2023
1 parent 32210f3 commit fb1a450
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tools/MinGW.Build.Static.Library.CMD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SETLOCAL EnableDelayedExpansion

SET VU_NAME=Vutils
SET VU_DIR=..
SET VU_CFG=-c -std=c++0x -Wa,-mbig-obj
SET VU_CFG=-c -std=c++17 -Wa,-mbig-obj
SET VU_3RD=%VU_DIR%\3rdparty
SET VU_LIB=%VU_DIR%\lib
SET VU_SRC=%VU_DIR%\src
Expand Down
16 changes: 8 additions & 8 deletions tools/Others/VSX.Build.Static.Library.CMD
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ IF [%confirm%]==[1] (
CALL "%VU_VSDEV%"
CD ..
:: 64-bit
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MD /p:Platform=x64 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MD /p:Platform=x64 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
IF [%VU_CI_BUILD%]==[] (
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MDd /p:Platform=x64 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MDd /p:Platform=x64 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
)
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MT /p:Platform=x64 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MT /p:Platform=x64 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
IF [%VU_CI_BUILD%]==[] (
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x64 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x64 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
)
:: 32-bit
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MD /p:Platform=x86 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MD /p:Platform=x86 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
IF [%VU_CI_BUILD%]==[] (
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MDd /p:Platform=x86 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MDd /p:Platform=x86 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
)
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MT /p:Platform=x86 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MT /p:Platform=x86 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
IF [%VU_CI_BUILD%]==[] (
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x86 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x86 /p:LanguageStandard="stdcpp17" /p:PlatformToolset=%VU_TSVER% -m
)
) ELSE (
ECHO Canceled
Expand Down

0 comments on commit fb1a450

Please sign in to comment.