From a2e3d249e8a94e9bdc11023dece5bd3679fd1429 Mon Sep 17 00:00:00 2001 From: Yukino Song Date: Sun, 23 Mar 2025 02:39:29 +0800 Subject: [PATCH] Turn off tests and documents by default --- cmake/prep/options.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/prep/options.cmake b/cmake/prep/options.cmake index df152c76..19f5a202 100644 --- a/cmake/prep/options.cmake +++ b/cmake/prep/options.cmake @@ -7,8 +7,8 @@ set(SUNSHINE_PUBLISHER_ISSUE_URL "https://github.com/ClassicOldSong/Apollo/issue CACHE STRING "The URL of the publisher's support site or issue tracker. If you provide a modified version of Sunshine, we kindly request that you use your own url.") -option(BUILD_DOCS "Build documentation" ON) -option(BUILD_TESTS "Build tests" ON) +option(BUILD_DOCS "Build documentation" OFF) +option(BUILD_TESTS "Build tests" OFF) option(NPM_OFFLINE "Use offline npm packages. You must ensure packages are in your npm cache." OFF) option(TESTS_ENABLE_PYTHON_TESTS "Enable Python tests" ON)