Add some geometry and mesh.

This commit is contained in:
jmsgrogan 2022-08-03 21:05:01 +01:00
parent 1ee31596fb
commit 877d96462d
21 changed files with 126 additions and 33 deletions

13
src/mesh/CMakeLists.txt Normal file
View file

@ -0,0 +1,13 @@
list(APPEND mesh_LIB_INCLUDES
AbstractMesh.cpp
Edge.cpp
Face.cpp
QuadMesh.cpp
TriMesh.cpp)
# add the library
add_library(mesh SHARED ${mesh_LIB_INCLUDES})
set_target_properties( mesh PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
set_property(TARGET mesh PROPERTY FOLDER src)