diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-12 15:59:10 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-12 16:01:45 +0200 |
commit | bc1bcd1fde77bd798b79a2b6776a044de033bd76 (patch) | |
tree | 1d82e5dbc85e70702273d5352dfcac131b273311 /include | |
parent | bbe2b2be8814c1c2bcc318e47715f7224b47cc5a (diff) | |
download | ouroboros-bc1bcd1fde77bd798b79a2b6776a044de033bd76.tar.gz ouroboros-bc1bcd1fde77bd798b79a2b6776a044de033bd76.zip |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/wrap/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
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}) |