Bläddra i källkod

Whoops, switched two strings in CMakeLists.txt

Ryan C. Gordon 19 år sedan
förälder
incheckning
2caa3b94e3
2 ändrade filer med 3 tillägg och 2 borttagningar
  1. 1 0
      CHANGELOG.txt
  2. 2 2
      CMakeLists.txt

+ 1 - 0
CHANGELOG.txt

@@ -2,6 +2,7 @@
  * CHANGELOG.
  * CHANGELOG.
  */
  */
 
 
+03192007 - Fixed two switched strings in CMakeLists.txt
 03162007 - Changed PHYSFS_file from a typedef to a #define (in case it would
 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
            cause an aggressive compiler to think you're passing the wrong type
            to a function) and added Doxygen comments to explain it.
            to a function) and added Doxygen comments to explain it.

+ 2 - 2
CMakeLists.txt

@@ -268,7 +268,7 @@ IF(PHYSFS_BUILD_STATIC)
     ADD_LIBRARY(physfs-static STATIC ${PHYSFS_SRCS})
     ADD_LIBRARY(physfs-static STATIC ${PHYSFS_SRCS})
     SET_TARGET_PROPERTIES(physfs-static PROPERTIES OUTPUT_NAME "physfs")
     SET_TARGET_PROPERTIES(physfs-static PROPERTIES OUTPUT_NAME "physfs")
     SET(PHYSFS_LIB_TARGET physfs-static)
     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)
 ENDIF(PHYSFS_BUILD_STATIC)
 
 
 OPTION(PHYSFS_BUILD_SHARED "Build shared library" TRUE)
 OPTION(PHYSFS_BUILD_SHARED "Build shared library" TRUE)
@@ -278,7 +278,7 @@ IF(PHYSFS_BUILD_SHARED)
     SET_TARGET_PROPERTIES(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION})
     SET_TARGET_PROPERTIES(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION})
     TARGET_LINK_LIBRARIES(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS})
     TARGET_LINK_LIBRARIES(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS})
     SET(PHYSFS_LIB_TARGET physfs)
     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)
 ENDIF(PHYSFS_BUILD_SHARED)
 
 
 IF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC)
 IF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC)