diff --git a/tools/build_projects.bat b/tools/build_projects.bat deleted file mode 100644 index e8e2ed99f..000000000 --- a/tools/build_projects.bat +++ /dev/null @@ -1,48 +0,0 @@ -@echo off -set RC= -setlocal - -if "%1" == "" ( -echo ERROR: Please specify a build target: Debug or Release -set ERRORLEVEL=1 -goto end -) - -if "%2" == "" ( -set PROJECT_NAME=cefclient -) else ( -set PROJECT_NAME=%2 -) - -echo Configuring Visual Studio environment... -if "%GYP_MSVS_VERSION%" == "2008" ( -call "%VS90COMNTOOLS%vsvars32.bat" -set PROJECT_EXT=.vcproj -) else ( -call "%VS100COMNTOOLS%vsvars32.bat" -set PROJECT_EXT=.vcxproj -set CEF_MSBUILD_PATH=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe -) - -if exist "%CEF_MSBUILD_PATH%" ( -"%CEF_MSBUILD_PATH%" /v:m /p:Configuration=%1;Platform=Win32 /t:"%PROJECT_NAME%" ..\cef.sln -) else if exist "%DevEnvDir%\devenv.com" ( -echo Building %1 target for %PROJECT_NAME% project... -"%DevEnvDir%\devenv.com" /build %1 ..\cef.sln /project %PROJECT_NAME%%PROJECT_EXT% -) else if exist "%VCINSTALLDIR%\vcpackages\vcbuild.exe" ( -echo Building %1 target for all projects... -"%VCINSTALLDIR%\vcpackages\vcbuild.exe" ..\cef.sln "%1|Win32" -) else ( -echo ERROR: Cannot find Visual Studio builder -set ERRORLEVEL=1 -) - -:end -endlocal & set RC=%ERRORLEVEL% -goto omega - -:returncode -exit /B %RC% - -:omega -call :returncode %RC% diff --git a/tools/build_projects.sh b/tools/build_projects.sh deleted file mode 100755 index 13eade15d..000000000 --- a/tools/build_projects.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -if [ -z "$1" ]; then - echo "ERROR: Please specify a build target: Debug or Release" -else - if [ -z "$2" ]; then - PROJECT_NAME='cefclient' - else - PROJECT_NAME=$2 - fi - if [ `uname` = "Linux" ]; then - pushd ../../ - make -j16 $PROJECT_NAME BUILDTYPE=$1 - popd - else - xcodebuild -project ../cef.xcodeproj -configuration $1 -target "$PROJECT_NAME" - fi -fi