From 7a8f020fcfac7c2302534e017f31ca93d52c67c4 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Thu, 7 Sep 2023 23:50:35 +0800 Subject: [PATCH] Fix issue that cmake install is skipped during windows build (#2029) Fix windows build --- build_release.bat | 2 +- build_release_vs2022.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_release.bat b/build_release.bat index 07cc2fe805..3742a34f65 100644 --- a/build_release.bat +++ b/build_release.bat @@ -21,6 +21,6 @@ cd build cmake .. -G "Visual Studio 16 2019" -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=Release -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0" cmake --build . --config Release --target ALL_BUILD -- -m cd .. -run_gettext.bat +call run_gettext.bat cd build cmake --build . --target install --config Release \ No newline at end of file diff --git a/build_release_vs2022.bat b/build_release_vs2022.bat index a51c6469a8..c335a290f4 100644 --- a/build_release_vs2022.bat +++ b/build_release_vs2022.bat @@ -21,6 +21,6 @@ cd build cmake .. -G "Visual Studio 17 2022" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=Release cmake --build . --config Release --target ALL_BUILD -- -m cd .. -run_gettext.bat +call run_gettext.bat cd build cmake --build . --target install --config Release \ No newline at end of file