Skip to content

Commit

Permalink
Fix VS2017 build break (#457)
Browse files Browse the repository at this point in the history
* Fix VS2017 build break

* cutil update
  • Loading branch information
ericwolz authored Feb 9, 2024
1 parent 56b4fb1 commit 35b5780
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build_all/windows/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ if %MAKE_NUGET_PKG% == yes (

) else if %build-platform% == Win32 (
echo ***Running CMAKE for Win32***
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A Win32
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A Win32 -G %VSVERSION%
if not !ERRORLEVEL!==0 exit /b !ERRORLEVEL!
) else if %build-platform% == arm (
echo ***Running CMAKE for ARM***
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A ARM
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A ARM -G %VSVERSION%
if not !ERRORLEVEL!==0 exit /b !ERRORLEVEL!
) else (
echo ***Running CMAKE for Win64***
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A x64
cmake %build-root% -Drun_unittests:BOOL=ON -Drun_e2e_tests:BOOL=ON -A x64 -G %VSVERSION%
if not !ERRORLEVEL!==0 exit /b !ERRORLEVEL!
)

Expand Down

0 comments on commit 35b5780

Please sign in to comment.