UVAtlas/build/UVAtlas-config.cmake.in

23 lines
511 B
CMake
Raw Normal View History

2020-12-18 23:35:28 +00:00
@PACKAGE_INIT@
include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-targets.cmake)
include(CMakeFindDependencyMacro)
set(UVATLAS_USE_OPENMP @UVATLAS_USE_OPENMP@)
if(UVATLAS_USE_OPENMP)
find_dependency(OpenMP)
endif()
set(ENABLE_USE_EIGEN @ENABLE_USE_EIGEN@)
if (ENABLE_USE_EIGEN)
find_dependency(Eigen3)
find_dependency(spectra)
endif()
2023-06-14 21:12:55 +00:00
if(MINGW OR (NOT WIN32))
find_dependency(directx-headers CONFIG)
find_dependency(directxmath CONFIG)
endif()
2020-12-18 23:35:28 +00:00
check_required_components("@PROJECT_NAME@")