17 lines
390 B
Batchfile
17 lines
390 B
Batchfile
@echo off
|
|
set ROOT=%~dp0%
|
|
pushd "%ROOT%"
|
|
|
|
set CUR_PATH=%PATH%
|
|
call 3rd_party\CEF\create_debug.cmd
|
|
set PATH=%CUR_PATH%
|
|
|
|
mkdir build
|
|
mkdir build\debug
|
|
pushd build\debug
|
|
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -DSIADRIVE_INSTALL_FOLDER="%ROOT%build\Debug\dist" ..\..
|
|
cmake --build . --config Debug && cmake --build . --target install --config Debug
|
|
popd
|
|
|
|
pause
|
|
popd |