Initial commit
This commit is contained in:
commit
5985bb8445
64 changed files with 33142 additions and 0 deletions
11
cmake/libigl.cmake
Normal file
11
cmake/libigl.cmake
Normal 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)
|
Reference in a new issue