CGDI/cmake/polyscope.cmake
David Coeurjolly 3809396344 missing files
2023-01-10 10:51:50 +01:00

16 lines
294 B
CMake

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)