1
0

Path fixes

This commit is contained in:
Scott E. Graves
2017-03-23 01:09:08 -05:00
parent d0b43261ed
commit 7d7ae6d886
5 changed files with 24 additions and 13 deletions

View File

@@ -1,16 +1,16 @@
@echo off
set ROOT=%~dp0%
pushd "%ROOT%"
set ROOT1=%~dp0%
pushd "%ROOT1%"
call build_common.cmd
set CMAKE=%ROOT%bin\cmake-3.7.2-win64-x64\bin\cmake
set CMAKE=%ROOT1%bin\cmake-3.7.2-win64-x64\bin\cmake
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% -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -DSIADRIVE_INSTALL_FOLDER="%ROOT1%dist\Debug" ..\..
%CMAKE% --build . --config Debug && %CMAKE% --build . --target install --config Debug
popd