TetGen 1.5.0

- obtained from www.wias-berlin.de
- license change from MIT with non-commercial addition to AGPLv3
This commit is contained in:
Hang Si
2013-11-06 22:26:00 +01:00
committed by Juergen Fuhrmann
parent bf6c994688
commit 1eb7385637
8 changed files with 26517 additions and 29211 deletions

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
# Set the minimum required version of cmake for a project.
cmake_minimum_required(VERSION 2.6)
# Add an executable to the project using the specified source files.
add_executable(tetgen tetgen.cxx predicates.cxx)
#Add a library to the project using the specified source files.
# In Linux/Unix, it will creates the libtet.a
add_library(tet STATIC tetgen.cxx predicates.cxx)
#Set properties on a target.
#We use this here to set -DTETLIBRARY for when compiling the
#library
set_target_properties(tet PROPERTIES "COMPILE_DEFINITIONS" TETLIBRARY)