Revert "Build osmium_convert in order to be able to eventually replace osmosis"

This reverts commit 344588114dd5076385b35e0fbaef966de681f95f.
This commit is contained in:
Daniel J. Hofmann
2016-01-13 14:34:36 +01:00
committed by Patrick Niklaus
parent 3727637145
commit 43dcdb21ec
2 changed files with 0 additions and 16 deletions
-15
View File
@@ -1,15 +0,0 @@
#!/usr/bin/env bash
# Builds command line tools shipped with libosmium for example osmium_convert
# CMake build directory is build/osmium; binaries are located under build/osmium/examples
# e: exit on first error, x: print commands
set -ex
BUILD_DIR=build/osmium
cmake -E remove_directory $BUILD_DIR
cmake -E make_directory $BUILD_DIR
cmake -E chdir $BUILD_DIR cmake ../../third_party/libosmium -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=1 -DBUILD_TESTING=0
cmake -E chdir $BUILD_DIR cmake --build .