Skip to content
Snippets Groups Projects
user avatar
Alexandre REYSS authored
5f0c3c0b
Forked from THERY SYLVAIN / TP_MAG_2Carte
4 commits ahead of the upstream repository.

CGoGN_2 (for TP)

CGoGN is a geometric modeling C++ library that provides an efficient implementation of combinatorial maps. This is a sub-set only for TP in Master2 I3D

Building and installing

  • run cmake <cgogn_path> from the build directory of your choice (this build directory must not be cgogn_path)
  • you can specify build type and install path by modifying CMAKE_BUILD_TYPE and CMAKE_INSTALL_PREFIX either by using cmake-gui or ccmake, or by specifying -DCMAKE_BUILD_TYPE="" -DCMAKE_INSTALL_PREFIX="<install_path>" when running cmake
  • CMAKE_BUILD_TYPE default value is "Release"
  • LINUX and MacOS
    • make -jN or ninja in the build directory
    • make (or ninja) install in the build directory if you want to install
  • Windows
    • VS 2013 or better required
    • Installation : open INSTALL solution in VS and build it
  • BETTER Use QtCreeator