From 67c3b00ec4b4ac97cb255973d5213174ce7a91e9 Mon Sep 17 00:00:00 2001 From: rjc8237 <78932090+rjc8237@users.noreply.github.com> Date: Fri, 23 Aug 2024 16:45:06 -0400 Subject: [PATCH] Fixed top level CMake options --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebb8d47..a5d88a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ if (PROJECT_IS_TOP_LEVEL) option(USE_SUITESPARSE "Use suite sparse methods for matrix inversion" ON) option(USE_PYBIND "Generate pybindings" ON) option(BUILD_CURVATURE_METRIC_TESTS "Build tests" ON) - add_option(USE_EMBREE "Use Embree for rendering" OFF) + option(USE_EMBREE "Use Embree for rendering" OFF) # Set libigl and suitesparse options option(LIBIGL_PREDICATES "Use Predicates" ON)