Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change NOTICE to STATUS to address #891 #899

Merged
merged 1 commit into from
Jan 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ if(OPENEXR_INSTALL_PKG_CONFIG)
openexr_pkg_config_help(OpenEXR.pc.in)
openexr_pkg_config_help(IlmBase.pc.in)
else()
message(NOTICE "-- WARNING pkg-config generation disabled")
message(STATUS "-- pkg-config generation disabled")
endif()

###################################################
Expand Down
8 changes: 4 additions & 4 deletions cmake/OpenEXRSetup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include(GNUInstallDirs)

if(NOT "${CMAKE_PROJECT_NAME}" STREQUAL "${PROJECT_NAME}")
set(OPENEXR_IS_SUBPROJECT ON)
message(NOTICE "OpenEXR is configuring as a cmake sub project")
message(STATUS "OpenEXR is configuring as a cmake subproject")
endif()

########################
Expand Down Expand Up @@ -165,9 +165,9 @@ endif()
if(OPENEXR_FORCE_INTERNAL_ZLIB OR NOT ZLIB_FOUND)
set(zlib_VER "1.2.11")
if(OPENEXR_FORCE_INTERNAL_ZLIB)
message(NOTICE "Compiling internal copy of zlib version ${zlib_VER}")
message(STATUS "Compiling internal copy of zlib version ${zlib_VER}")
else()
message(NOTICE "ZLIB library not found, compiling ${zlib_VER}")
message(STATUS "zlib library not found, compiling ${zlib_VER}")
endif()

# Unfortunately, zlib has an ancient cmake setup which does not include
Expand Down Expand Up @@ -255,7 +255,7 @@ if(NOT TARGET Imath::Imath AND NOT Imath_FOUND)
if (${CMAKE_VERSION} VERSION_LESS "3.11.0")
message(FATAL_ERROR "CMake 3.11 or newer is required for FetchContent, you must manually install Imath if you are using an earlier version of CMake")
endif()
message(NOTICE "Imath was not found, installing from github")
message(STATUS "Imath was not found, installing from github")

include(FetchContent)
FetchContent_Declare(Imath
Expand Down