diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-12 14:24:47 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-12 14:24:47 +0000 |
commit | 2cc9c8d742e037c8a6ddc3eea4c05f4a905183d3 (patch) | |
tree | 1d82e5dbc85e70702273d5352dfcac131b273311 /include | |
parent | bbe2b2be8814c1c2bcc318e47715f7224b47cc5a (diff) | |
parent | bc1bcd1fde77bd798b79a2b6776a044de033bd76 (diff) | |
download | ouroboros-2cc9c8d742e037c8a6ddc3eea4c05f4a905183d3.tar.gz ouroboros-2cc9c8d742e037c8a6ddc3eea4c05f4a905183d3.zip |
Merged in sandervrijders/ouroboros/be-cmake-msg (pull request #478)
build: Add STATUS to message statements
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}) |