diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-09-13 15:25:53 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-09-13 15:25:53 +0000 |
commit | 184f6d40e70895fefff25c8b72f6230781a030bf (patch) | |
tree | bddca1ad5b5a08ad6fb0a9ec096984e42afe0d38 /include | |
parent | 888d3dbe7c3844d2efe9d6bc9823630db5d47a3b (diff) | |
parent | 0ed2ae85935be59b3fee5663a9906c4260cd64cc (diff) | |
download | ouroboros-184f6d40e70895fefff25c8b72f6230781a030bf.tar.gz ouroboros-184f6d40e70895fefff25c8b72f6230781a030bf.zip |
Merged in dstaesse/ouroboros/be-build (pull request #591)
build: Fix DDNS tool detection for shim-udp
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/wrap/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/ouroboros/wrap/CMakeLists.txt b/include/ouroboros/wrap/CMakeLists.txt index 44c652d5..4ec42b9a 100644 --- a/include/ouroboros/wrap/CMakeLists.txt +++ b/include/ouroboros/wrap/CMakeLists.txt @@ -1,18 +1,20 @@ include_directories(${CMAKE_SOURCE_DIR}/include) include_directories(${CMAKE_BINARY_DIR}/include) -find_package(SWIG) +find_package(SWIG QUIET) if (NOT SWIG_FOUND) - message(STATUS "SWIG not found: Bindings for other languages disabled") + message(STATUS "Install SWIG to enable bindings for other languages") else () + message(STATUS "SWIG support enabled") include(${SWIG_USE_FILE}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) set(CMAKE_SWIG_FLAGS "") - find_package(PythonLibs) + find_package(PythonLibs QUIET) if (NOT PYTHONLIBS_FOUND) message(STATUS "Python not found: Python bindings will not be built") else () + message(STATUS "Python found: Python bindings will be built") include_directories(${PYTHON_INCLUDE_PATH}) # Python assumes C99 since Python 3.6 |