missing files

This commit is contained in:
David Coeurjolly 2023-01-10 10:51:50 +01:00
parent 08e63a0d91
commit 3809396344
3 changed files with 29 additions and 0 deletions

BIN
cmake/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,14 @@
if (TARGET geometry-central)
return()
endif()
include(FetchContent)
message(STATUS "Fetching geometry-central")
FetchContent_Declare(
geometry-central
GIT_REPOSITORY https://github.com/nmwsharp/geometry-central.git
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(geometry-central)

15
cmake/polyscope.cmake Normal file
View File

@ -0,0 +1,15 @@
if (TARGET polyscope)
return()
endif()
include(FetchContent)
message(STATUS "Fetching polyscope")
FetchContent_Declare(
polyscope
GIT_REPOSITORY https://github.com/nmwsharp/polyscope.git
GIT_TAG v1.2.0
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(polyscope)