From 2caa3b94e3ffb8124800b8bcca5f4d1610f23ac9 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 19 Mar 2007 04:30:10 +0000 Subject: [PATCH] Whoops, switched two strings in CMakeLists.txt --- CHANGELOG.txt | 1 + CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 25cfb6ee..93c867f8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -2,6 +2,7 @@ * CHANGELOG. */ +03192007 - Fixed two switched strings in CMakeLists.txt 03162007 - Changed PHYSFS_file from a typedef to a #define (in case it would cause an aggressive compiler to think you're passing the wrong type to a function) and added Doxygen comments to explain it. diff --git a/CMakeLists.txt b/CMakeLists.txt index a4f03cf0..cb229b42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -268,7 +268,7 @@ IF(PHYSFS_BUILD_STATIC) ADD_LIBRARY(physfs-static STATIC ${PHYSFS_SRCS}) SET_TARGET_PROPERTIES(physfs-static PROPERTIES OUTPUT_NAME "physfs") SET(PHYSFS_LIB_TARGET physfs-static) - SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs") + SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs-static") ENDIF(PHYSFS_BUILD_STATIC) OPTION(PHYSFS_BUILD_SHARED "Build shared library" TRUE) @@ -278,7 +278,7 @@ IF(PHYSFS_BUILD_SHARED) SET_TARGET_PROPERTIES(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION}) TARGET_LINK_LIBRARIES(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS}) SET(PHYSFS_LIB_TARGET physfs) - SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs-static") + SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs") ENDIF(PHYSFS_BUILD_SHARED) IF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC)