Changeset 418
- Timestamp:
- Dec 5, 2007, 6:38:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/cmake/FindBoost.cmake
r371 r418 144 144 SET(Boost_LIBRARY_DIR ${Boost_LIBRARY_DIR}/stage/lib) 145 145 ELSE(EXISTS "${Boost_LIBRARY_DIR}/stage/lib") 146 SET(Boost_LIBRARY_DIR "") 146 IF(EXISTS "${Boost_LIBRARY_DIR}/../../lib") 147 SET(Boost_LIBRARY_DIR "${Boost_LIBRARY_DIR}/../../lib") 148 ELSE(EXISTS "${Boost_LIBRARY_DIR}/../../lib") 149 SET(Boost_LIBRARY_DIR "") 150 ENDIF(EXISTS "${Boost_LIBRARY_DIR}/../../lib") 147 151 ENDIF(EXISTS "${Boost_LIBRARY_DIR}/stage/lib") 148 152 ENDIF(EXISTS "${Boost_LIBRARY_DIR}/lib") … … 167 171 # List of library suffixes to search, e.g. libboost_date_time-gcc 168 172 SET(BOOST_SUFFIX_SEARCH 173 mt 169 174 gcc41-mt 170 175 gcc … … 193 198 # Boost_LIB_PREFIX, Boost_LIB_SUFFIX, Boost_LIB_SUFFIX_DEBUG 194 199 # otherwise we'll search the BOOST_SUFFIX_SEARCH list 200 195 201 SET(BOOST_LIB_NAMES ${Boost_LIB_PREFIX}boost_${name}-${Boost_LIB_SUFFIX}) 196 202 IF(NOT Boost_LIB_SUFFIX) … … 233 239 MARK_AS_ADVANCED(Boost_${name}_LIBRARY Boost_${name}_LIBRARY_DEBUG) 234 240 ELSE(Boost_${name}_LIBRARY) 241 MESSAGE(STATUS "sdfds") 235 242 IF(NOT Boost_FIND_QUIETLY) 236 243 MESSAGE(STATUS "Boost ${name} library was not found.")
Note: See TracChangeset
for help on using the changeset viewer.