1
0

Mount support and other stuff

This commit is contained in:
Scott E. Graves
2017-03-22 13:52:41 -05:00
parent 2e3730b3d1
commit 2a78c522be
7 changed files with 61 additions and 32 deletions

View File

@@ -2,13 +2,16 @@
set ROOT=%~dp0%
pushd "%ROOT%"
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
%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