123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- function(FIND_PACKAGE_MESSAGE_SLIC3R pkg msg details)
-
- if(NOT ${pkg}_FIND_QUIETLY)
- string(REPLACE "\n" "" details "${details}")
- set(DETAILS_VAR FIND_PACKAGE_MESSAGE_DETAILS_${pkg})
- if(NOT "${details}" STREQUAL "${${DETAILS_VAR}}")
-
- message(STATUS "${msg}")
-
-
- set("${DETAILS_VAR}" "${details}"
- CACHE INTERNAL "Details about finding ${pkg}")
- endif()
- endif()
- endfunction()
|