1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/build_debug_x64.cmd
Scott E. Graves 3295c413bc Mount changes
2017-03-22 17:22:50 -05:00

18 lines
433 B
Batchfile

@echo off
set ROOT=%~dp0%
pushd "%ROOT%"
REM call build_common.cmd
set CMAKE=%ROOT%bin\cmake-3.7.2-win64-x64\bin\cmake
REM call 3rd_party\CEF\create.cmd Debug
mkdir build
mkdir build\debug
pushd build\debug
%CMAKE% -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -DSIADRIVE_INSTALL_FOLDER="%ROOT%dist\Debug" ..\..
%CMAKE% --build . --config Debug && %CMAKE% --build . --target install --config Debug
popd
pause
popd