-
Notifications
You must be signed in to change notification settings - Fork 137
compiling_Makefile
Bruno Levy edited this page Jul 20, 2022
·
2 revisions
Some users may want to compile the geogram library as simply as possible, without CMake, with a plain old Makefile. For instance, users who develop extensions of the R language under Windows with the open-source MingW compiler.
The default configuration is meant to be used with:
- cygwin
- MingW
$ git clone https://github.com/BrunoLevy/geogram.git
$ cd geogram
$ tools/MakeMake.sh
$ cd build/simple_make
$ make
By default, this creates a static library (libgeogram_static.a
) and
compiles an example program (vorpalite_static.exe
).
One can edit the Makefile to change the compiler name and compiling options.
To get latest version of submodules:
git submodule update --recursive --remote