-
Notifications
You must be signed in to change notification settings - Fork 142
compiling_MacOS
Bruno edited this page May 9, 2024
·
5 revisions
- CMake
- C++ compiler (clang)
$ 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.
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)