Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 331 Bytes

build-debian.md

File metadata and controls

24 lines (19 loc) · 331 Bytes

CMake - Building on debian or ubuntu

Install requirements

sudo apt-get update
sudo apt-get install -y --no-install-recommends \
    cmake \
    clang \
    make \
    libboost-graph-dev \
    libgdal-dev

Build with cmake

mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
make test