Skip to content

Commit

Permalink
Clean message calls in CMake
Browse files Browse the repository at this point in the history
Change-Id: If1a959d9b8d544c9f4671c84880b1d0d11d3d285
  • Loading branch information
vrabaud authored and jzern committed May 25, 2023
1 parent cba3007 commit 8f187b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ if(WEBP_BUILD_WEBP_JS)
set(WEBP_USE_THREAD OFF)

if(WEBP_ENABLE_SIMD)
message("wasm2js does not support SIMD, disabling webp.js generation.")
message(
NOTICE "wasm2js does not support SIMD, disabling webp.js generation.")
endif()
endif()

Expand Down
2 changes: 1 addition & 1 deletion cmake/deps.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ set(WEBP_DEP_IMG_INCLUDE_DIRS)
foreach(I_LIB PNG JPEG TIFF)
# Disable tiff when compiling in static mode as it is failing on Ubuntu.
if(WEBP_LINK_STATIC AND ${I_LIB} STREQUAL "TIFF")
message("TIFF is disabled when statically linking.")
message(STATUS "TIFF is disabled when statically linking.")
continue()
endif()
find_package(${I_LIB})
Expand Down

0 comments on commit 8f187b9

Please sign in to comment.