From c65d6907e585df7960c9211e61178571fd044bc6 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Sun, 9 Sep 2018 01:40:27 +0200 Subject: [PATCH] Disable redundant physfs builds for CI --- physfs-3.0.1/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/physfs-3.0.1/CMakeLists.txt b/physfs-3.0.1/CMakeLists.txt index 9373a03..eb377d2 100644 --- a/physfs-3.0.1/CMakeLists.txt +++ b/physfs-3.0.1/CMakeLists.txt @@ -168,7 +168,7 @@ if(PHYSFS_BUILD_STATIC) set(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs-static") endif() -option(PHYSFS_BUILD_SHARED "Build shared library" TRUE) +option(PHYSFS_BUILD_SHARED "Build shared library" FALSE) if(PHYSFS_BUILD_SHARED) add_library(physfs SHARED ${PHYSFS_SRCS}) set_target_properties(physfs PROPERTIES MACOSX_RPATH 1) @@ -192,7 +192,7 @@ if(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC AND NOT WINDOWS) 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)