You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
362 B
14 lines
362 B
if(TARGET simple_bvh::simple_bvh)
|
|
return()
|
|
endif()
|
|
|
|
message(STATUS "Third-party: creating target 'simple_bvh::simple_bvh'")
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
SimpleBVH
|
|
GIT_REPOSITORY https://github.com/ipc-sim/SimpleBVH.git
|
|
GIT_TAG 6d4b162cc87f156cf9a538a447ef17b94233d60c
|
|
GIT_SHALLOW FALSE
|
|
)
|
|
FetchContent_MakeAvailable(SimpleBVH)
|
|
|