[geos-commits] r4379 - trunk

Mateusz Loskot mateusz at loskot.net
Tue Mar 28 03:15:05 PDT 2017


Author: mloskot
Date: 2017-03-28 03:15:05 -0700 (Tue, 28 Mar 2017)
New Revision: 4379

Removed:
   trunk/build.bat
Log:
Remove build.bat script

There is no point in maintaining such specific build script
while there are better, more flexible tools for CMake users
who wish to build/test/develop GEOS.


Deleted: trunk/build.bat
===================================================================
--- trunk/build.bat	2017-03-27 00:30:03 UTC (rev 4378)
+++ trunk/build.bat	2017-03-28 10:15:05 UTC (rev 4379)
@@ -1,53 +0,0 @@
- at echo off
-rem Runs CMake to configure for Visual Studio 2015.
-rem Runs MSBuild to build the generated solution.
-rem
-rem Usage:
-rem 1. Copy build.bat to build.locale.bat (git ignored file)
-rem 2. Make your adjustments in the CONFIGURATION section below
-rem 3. Run build.local.bat 32|64
-rem 4. Optionally, run devenv.exe GEOS{32|64}.sln
-
-rem ### CONFIGURATION #####################################
-rem #######################################################
-
-if not defined VS140COMNTOOLS goto :NoVS
-if [%1]==[] goto :Usage
-if [%1]==[32] goto :32
-if [%1]==[64] goto :64
-goto :Usage
-
-:32
-set BUILDP=32
-set MSBUILDP=Win32
-set GENERATOR="Visual Studio 14 2015"
-goto :Build
-
-:64
-set BUILDP=64
-set MSBUILDP=x64
-set GENERATOR="Visual Studio 14 2015 Win64"
-goto :Build
-
-:Build
-set BUILDDIR=_build%BUILDP%
-mkdir %BUILDDIR%
-pushd %BUILDDIR%
-"C:\Program Files\CMake\bin\cmake.exe" ^
-    -G %GENERATOR% ^
-    ..
-move GEOS.sln GEOS%BUILDP%.sln
-msbuild.exe GEOS%BUILDP%.sln /p:Configuration=Release /p:Platform=%MSBUILDP%
-popd
-goto :EOF
-
-:NoVS
- at echo build.bat
- at echo  Visual Studio 2015 not found
- at echo  "%%VS140COMNTOOLS%%" environment variable not defined
-exit /B 1
-
-:Usage
- at echo build.bat
- at echo Usage: build.bat [32 or 64]
-exit /B 1



More information about the geos-commits mailing list