mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
add vs2022 bat
This commit is contained in:
parent
b76be35d5a
commit
9253fed401
1 changed files with 23 additions and 0 deletions
23
build_release_vs2022.bat
Normal file
23
build_release_vs2022.bat
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
set WP=%CD%
|
||||||
|
cd deps
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
set DEPS=%CD%/OrcaSlicer_dep
|
||||||
|
if "%1"=="studio" (
|
||||||
|
GOTO :studio
|
||||||
|
)
|
||||||
|
echo "building deps.."
|
||||||
|
cmake ../ -G "Visual Studio 17 2022" -A x64 -DDESTDIR="%CD%/OrcaSlicer_dep" -DCMAKE_BUILD_TYPE=Release
|
||||||
|
@REM cmake --build . --config Release --target ALL_BUILD -- -m
|
||||||
|
|
||||||
|
if "%1"=="deps" exit /b 0
|
||||||
|
|
||||||
|
:studio
|
||||||
|
echo "building studio..."
|
||||||
|
cd %WP%
|
||||||
|
mkdir build
|
||||||
|
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
|
||||||
|
cmake --build . --target install --config Release
|
Loading…
Add table
Add a link
Reference in a new issue