Initial commit

This commit is contained in:
github-classroom[bot] 2024-10-24 10:26:51 +00:00 committed by GitHub
commit 5985bb8445
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
64 changed files with 33142 additions and 0 deletions

11
cmake/libigl.cmake Normal file
View file

@ -0,0 +1,11 @@
if(TARGET igl::core)
return()
endif()
include(FetchContent)
FetchContent_Declare(
libigl
GIT_REPOSITORY https://github.com/libigl/libigl.git
GIT_TAG v2.5.0
)
FetchContent_MakeAvailable(libigl)