From c539473021f7269d73d7ed5c3641a53677b0d44a Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Mon, 8 Jul 2024 16:59:08 +0300 Subject: [PATCH] simplify PHYSFS building --- third-party/physfs/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third-party/physfs/CMakeLists.txt b/third-party/physfs/CMakeLists.txt index b3291cc..9ac0eea 100644 --- a/third-party/physfs/CMakeLists.txt +++ b/third-party/physfs/CMakeLists.txt @@ -212,7 +212,7 @@ if(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC AND NOT WIN32) set_target_properties(physfs-static PROPERTIES CLEAN_DIRECT_OUTPUT 1) endif() -option(PHYSFS_BUILD_TEST "Build stdio test program." TRUE) +option(PHYSFS_BUILD_TEST "Build stdio test program." FALSE) mark_as_advanced(PHYSFS_BUILD_TEST) if(PHYSFS_BUILD_TEST) find_path(READLINE_H readline/readline.h) @@ -265,7 +265,7 @@ if(NOT PHYSFS_DISABLE_INSTALL) endif() endif() -option(PHYSFS_BUILD_DOCS "Build doxygen based documentation" TRUE) +option(PHYSFS_BUILD_DOCS "Build doxygen based documentation" FALSE) if(PHYSFS_BUILD_DOCS) find_package(Doxygen) if(DOXYGEN_FOUND)