Skip to content

Commit

Permalink
Vutils
Browse files Browse the repository at this point in the history
  • Loading branch information
vic4key committed Oct 11, 2023
1 parent 6356d92 commit 9be5dfb
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions tools/Others/VSX.Build.Static.Library.CMD
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,22 @@ IF [%confirm%]==[1] (
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=MDd /p:Platform=x64 /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=MT /p:Platform=x64 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x64 /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
)
:: 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=MDd /p:Platform=x86 /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=MT /p:Platform=x86 /p:PlatformToolset=%VU_TSVER% -m
MSBuild %VU_NAME%.sln /t:%VU_NAME% /p:Configuration=MTd /p:Platform=x86 /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
)
) ELSE (
ECHO Canceled
)
Expand Down

0 comments on commit 9be5dfb

Please sign in to comment.