Skip to content
Snippets Groups Projects
README.md 867 B
Newer Older
Sylvain Thery's avatar
TP  
Sylvain Thery committed
# 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="<buildtype>" -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

THERY SYLVAIN's avatar
THERY SYLVAIN committed