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 Graves f647c45712 CEF changes
2017-03-17 12:27:46 -05:00

14 lines
232 B
Batchfile

@echo off
pushd "%~dp0%"
call 3rd-Party\CEF\create_debug.cmd
mkdir build
mkdir build\debug
pushd build\debug
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\..
cmake --build . --config Debug
popd
pause
popd