Skip to content

Commit

Permalink
don't build the viewer or CTS by default due to extra dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffamstutz committed Oct 18, 2024
1 parent bd4a1ec commit 8b33579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ option(BUILD_SHARED_LIBS "Build shared libraries instead of static" ON)
option(BUILD_TESTING "Build tests for CTest" ON)
# ANARI specific options

option(BUILD_CTS "Build cts toolkit" ON)
option(BUILD_CTS "Build cts toolkit" OFF)
cmake_dependent_option(CTS_ENABLE_GLTF "Enable glTF support for cts" ON "BUILD_CTS" ON)
option(USE_DRACO "Use draco when loading glTF files" OFF)
option(USE_WEBP "Use webp when loading glTF files" OFF)
Expand All @@ -69,7 +69,7 @@ endif()
option(BUILD_EXAMPLES "Build example applications and example device" ON)
cmake_dependent_option(BUILD_VIEWER
"Build interactive viewer app (requires GLFW)"
ON
OFF
"BUILD_EXAMPLES"
OFF
)
Expand Down

0 comments on commit 8b33579

Please sign in to comment.