Changeset 11239
- Timestamp:
- 03/17/10 15:36:16 (3 years ago)
- Location:
- OpenSceneGraph/trunk
- Files:
-
- 2 modified
-
CMakeLists.txt (modified) (2 diffs)
-
CMakeModules/FindGDAL.cmake (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/CMakeLists.txt
r11221 r11239 888 888 SET(OSG_LIBPATH_MESSAGE_HAS_BEEN_RUN_BEFORE 1 CACHE INTERNAL "Flag to track whether the libpath message has been reported before") 889 889 890 MESSAGE("\nThe build system is configured to instal libraries to ${CMAKE_INSTALL_PREFIX}/lib${LIB_POSTFIX}\n"890 MESSAGE("\nThe build system is configured to install libraries to ${CMAKE_INSTALL_PREFIX}/lib${LIB_POSTFIX}\n" 891 891 "Your applications may not be able to find your installed libraries unless you:\n" 892 892 " set your LD_LIBRARY_PATH (user specific) or\n" … … 894 894 IF(IS_DIRECTORY /etc/ld.so.conf.d) 895 895 MESSAGE("You have an ld.so.conf.d directory on your system, so if you wish to ensure that\n" 896 "applications find the installed osg libraries, system wide, you could install a \n"897 " openscenegraph specific ld.so configuration with:\n"896 "applications find the installed osg libraries, system wide, you could install an\n" 897 "OpenSceneGraph specific ld.so configuration with:\n" 898 898 " sudo make install_ld_conf\n") 899 899 CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/packaging/ld.so.conf.d/openscenegraph.conf.in -
OpenSceneGraph/trunk/CMakeModules/FindGDAL.cmake
r9260 r11239 58 58 59 59 FIND_LIBRARY(GDAL_LIBRARY 60 NAMES gdal gdal_i gdal1. 5.0 gdal1.4.0 gdal1.3.2 GDAL60 NAMES gdal gdal_i gdal1.6.0 gdal1.5.0 gdal1.4.0 gdal1.3.2 GDAL 61 61 PATHS 62 62 $ENV{GDAL_DIR} … … 65 65 ) 66 66 FIND_LIBRARY(GDAL_LIBRARY 67 NAMES gdal gdal_i gdal1. 5.0 gdal1.4.0 gdal1.3.2 GDAL67 NAMES gdal gdal_i gdal1.6.0 gdal1.5.0 gdal1.4.0 gdal1.3.2 GDAL 68 68 PATHS ${CMAKE_PREFIX_PATH} # Unofficial: We are proposing this. 69 69 NO_DEFAULT_PATH … … 71 71 ) 72 72 FIND_LIBRARY(GDAL_LIBRARY 73 NAMES gdal gdal_i gdal1. 5.0 gdal1.4.0 gdal1.3.2 GDAL73 NAMES gdal gdal_i gdal1.6.0 gdal1.5.0 gdal1.4.0 gdal1.3.2 GDAL 74 74 PATHS 75 75 ~/Library/Frameworks
