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.
 
 
 
 
 
 

18 lines
261 B

cmake_minimum_required (VERSION 3.13)
project (embree_sample)
set(SOURCES embree_sample.cpp)
FIND_PACKAGE(embree 4.3)
if(embree_FOUND)
add_executable(embree_sample ${SOURCES})
target_link_libraries(
embree_sample
PUBLIC
embree
vcglib)
endif()