Skip to content

compiling_MacOS

Bruno edited this page May 9, 2024 · 5 revisions

Geogram compilation on MacOS

Prerequisites

  • CMake
  • C++ compiler (clang)

Quick compilation guide

$ git clone --recurse-submodules https://github.com/BrunoLevy/geogram.git
$ cd geogram
$ ./configure.sh
$ cd build/Darwin-clang-dynamic-Release
$ make -j 8

This will compile the geogram library as well as demo programs. Demo programs are generated in the bin/ subdirectory.

Additional information

To get latest version of submodules:

   git submodule update --recursive --remote

To compile additional exploragram library:

$ cd geogram/src/lib
$ git clone https://github.com/BrunoLevy/exploragram.git

(then reconfigure and make)

Clone this wiki locally