Merge topic 'FindIce-updates'
2131aedd
FindIce: Respect Ice_FIND_QUIETLY when printing messagesd5047ca1
FindIce: Remove unneeded search path modification
This commit is contained in:
commit
81b2a250dc
|
@ -240,13 +240,8 @@ function(_Ice_FIND)
|
|||
set(Ice_VERSION "${Ice_VERSION_SLICE2CPP_FULL}" PARENT_SCOPE)
|
||||
endif()
|
||||
|
||||
message(STATUS "Ice version: ${Ice_VERSION_SLICE2CPP_FULL}")
|
||||
|
||||
# The following searches prefer the version found; note reverse
|
||||
# order due to prepending.
|
||||
if(NOT MSVC)
|
||||
list(INSERT ice_roots 0 "/opt/Ice-${Ice_VERSION_SLICE2CPP_SHORT}")
|
||||
list(INSERT ice_roots 0 "/opt/Ice-${Ice_VERSION_SLICE2CPP_FULL}")
|
||||
if(NOT Ice_FIND_QUIETLY)
|
||||
message(STATUS "Ice version: ${Ice_VERSION_SLICE2CPP_FULL}")
|
||||
endif()
|
||||
|
||||
# Find include directory
|
||||
|
@ -312,17 +307,19 @@ function(_Ice_FIND)
|
|||
set(_Ice_REQUIRED_LIBS_FOUND "${Ice_REQUIRED_LIBS_FOUND}" PARENT_SCOPE)
|
||||
set(Ice_LIBRARY "${Ice_LIBRARY}" PARENT_SCOPE)
|
||||
|
||||
if(Ice_LIBS_FOUND)
|
||||
message(STATUS "Found the following Ice libraries:")
|
||||
foreach(found ${Ice_LIBS_FOUND})
|
||||
message(STATUS " ${found}")
|
||||
endforeach()
|
||||
endif()
|
||||
if(Ice_LIBS_NOTFOUND)
|
||||
message(STATUS "The following Ice libraries were not found:")
|
||||
foreach(notfound ${Ice_LIBS_NOTFOUND})
|
||||
message(STATUS " ${notfound}")
|
||||
endforeach()
|
||||
if(NOT Ice_FIND_QUIETLY)
|
||||
if(Ice_LIBS_FOUND)
|
||||
message(STATUS "Found the following Ice libraries:")
|
||||
foreach(found ${Ice_LIBS_FOUND})
|
||||
message(STATUS " ${found}")
|
||||
endforeach()
|
||||
endif()
|
||||
if(Ice_LIBS_NOTFOUND)
|
||||
message(STATUS "The following Ice libraries were not found:")
|
||||
foreach(notfound ${Ice_LIBS_NOTFOUND})
|
||||
message(STATUS " ${notfound}")
|
||||
endforeach()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(Ice_DEBUG)
|
||||
|
|
Loading…
Reference in New Issue