Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions share/dev/windows/ocio.bat
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@ rem Update build and install variables
set BUILD_PATH=!BUILD_PATH!\!CMAKE_BUILD_TYPE!
set INSTALL_PATH=!INSTALL_PATH!\!CMAKE_BUILD_TYPE!

rem Create build and install directories if they don't already exist.
rem Without --configure, cmake -B never runs, so these would otherwise
rem never get created and the later cmake --build/--install/ctest steps
rem would fail with "is not a directory".
if NOT EXIST "!BUILD_PATH!" mkdir "!BUILD_PATH!"
if NOT EXIST "!INSTALL_PATH!" mkdir "!INSTALL_PATH!"

rem ****************************************************************************************************************
rem Setting up the environment using MS Visual Studio batch script
set VCVARS64_PATH="!MSVS_PATH!\VC\Auxiliary\Build\vcvars64.bat"
Expand Down