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)