From bc1bcd1fde77bd798b79a2b6776a044de033bd76 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 12 Apr 2017 15:59:10 +0200 Subject: build: Add STATUS to message statements This adds the STATUS variable to the message() call in CMakeLists.txt in places where it was missing. This ensures that the message is printed to stdout instead of stderr. --- include/ouroboros/wrap/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/ouroboros/wrap/CMakeLists.txt b/include/ouroboros/wrap/CMakeLists.txt index fd9368e8..6150fb17 100644 --- a/include/ouroboros/wrap/CMakeLists.txt +++ b/include/ouroboros/wrap/CMakeLists.txt @@ -4,7 +4,7 @@ include_directories(${CMAKE_SOURCE_DIR}/include) include_directories(${CMAKE_BINARY_DIR}/include) if (NOT SWIG_FOUND) - message("-- SWIG not found: Bindings for other languages disabled.") + message(STATUS "SWIG not found: Bindings for other languages disabled.") else () include(${SWIG_USE_FILE}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) @@ -12,7 +12,7 @@ else () find_package(PythonLibs) if (NOT PYTHONLIBS_FOUND) - message("-- Python not found: Python bindings will not be built.") + message(STATUS "Python not found: Python bindings will not be built.") else () include_directories(${PYTHON_INCLUDE_PATH}) -- cgit v1.2.3