-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathbuild.bat
More file actions
15 lines (15 loc) · 723 Bytes
/
build.bat
File metadata and controls
15 lines (15 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
REM Clear current session log
cls
REM Source environment (Uncomment lines starting with "set" if you current env does not have these defined.)
REM Define Resolver > Has to be one of 'fileResolver'/'pythonResolver'/'cachedResolver'/'httpResolver'
REM set AR_RESOLVER_NAME=cachedResolver
REM Define App (for other apps, see documentation)
REM set AR_DCC_NAME=HOUDINI
REM set HFS=C:\Program Files\Side Effects Software\<InsertHoudiniVersion>
REM Clear existing build data and invoke cmake
rmdir /S /Q build
rmdir /S /Q dist
REM Make sure to match the correct VS version the DCC was built with
cmake . -B build -G "Visual Studio 17 2022" -A x64 -T v143
cmake --build build --clean-first --config Release
cmake --install build