[impl] Allow only one application instance only [impl] Automatic start of browser with the right command line argument [chore] Update dependencies to conan
33 lines
1.0 KiB
Batchfile
33 lines
1.0 KiB
Batchfile
|
|
setlocal
|
|
|
|
set GENERATOR=visual_studio_multi
|
|
set CONAN=conan
|
|
set ARCH=x86
|
|
|
|
SET SCRIPTDIR=%~dp0
|
|
|
|
mkdir %SCRIPTDIR%\CCEngine\build
|
|
cd %SCRIPTDIR%\CCEngine\build
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Debug
|
|
rem --build=libcurl
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Release
|
|
rem --build=libcurl
|
|
|
|
mkdir %SCRIPTDIR%\CCEngineLoader\build
|
|
cd %SCRIPTDIR%\CCEngineLoader\build
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Debug
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Release
|
|
|
|
mkdir %SCRIPTDIR%\..\libLicenseClient\build
|
|
cd %SCRIPTDIR%\..\libLicenseClient\build
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Debug
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Release
|
|
|
|
mkdir %SCRIPTDIR%\..\libLicenseClient\test\build
|
|
cd %SCRIPTDIR%\..\libLicenseClient\test\build
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Debug
|
|
%CONAN% install .. -g %GENERATOR% -s arch=%ARCH% -s build_type=Release
|
|
|
|
endlocal
|