From 91fd0d0786bc723e1b93b14cf35f78c952d09c8d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 1 Dec 2023 22:59:53 -0600 Subject: [PATCH] Disable GLFW tests, example programs, and docs in build --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1424f418..95170aec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,6 +65,9 @@ if(NOT BUILDCORE_TARGET STREQUAL "gba") /usr/local/include ) add_subdirectory(deps/glad) + set(GLFW_BUILD_EXAMPLES OFF) + set(GLFW_BUILD_TESTS OFF) + set(GLFW_BUILD_DOCS OFF) add_subdirectory(deps/glfw) add_subdirectory(deps/imgui) add_subdirectory(deps/lodepng)