r845 - trunk

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Mar 19 00:30:11 EDT 2007


Author: icculus
Date: 2007-03-19 00:30:10 -0400 (Mon, 19 Mar 2007)
New Revision: 845

Modified:
   trunk/CHANGELOG.txt
   trunk/CMakeLists.txt
Log:
Whoops, switched two strings in CMakeLists.txt

Modified: trunk/CHANGELOG.txt
===================================================================
--- trunk/CHANGELOG.txt	2007-03-18 22:16:26 UTC (rev 844)
+++ trunk/CHANGELOG.txt	2007-03-19 04:30:10 UTC (rev 845)
@@ -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.

Modified: trunk/CMakeLists.txt
===================================================================
--- trunk/CMakeLists.txt	2007-03-18 22:16:26 UTC (rev 844)
+++ trunk/CMakeLists.txt	2007-03-19 04:30:10 UTC (rev 845)
@@ -268,7 +268,7 @@
     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 @@
     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)




More information about the physfs-commits mailing list