Add some geometry and mesh.
This commit is contained in:
parent
1ee31596fb
commit
877d96462d
21 changed files with 126 additions and 33 deletions
13
src/mesh/CMakeLists.txt
Normal file
13
src/mesh/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue