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 /src/ipcpd/shim-udp/CMakeLists.txt | |
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 'src/ipcpd/shim-udp/CMakeLists.txt')
-rw-r--r-- | src/ipcpd/shim-udp/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ipcpd/shim-udp/CMakeLists.txt b/src/ipcpd/shim-udp/CMakeLists.txt index 2560f242..3ff8dd5f 100644 --- a/src/ipcpd/shim-udp/CMakeLists.txt +++ b/src/ipcpd/shim-udp/CMakeLists.txt @@ -42,12 +42,12 @@ find_program(NSLOOKUP_EXECUTABLE include(AddCompileFlags) if (${NSUPDATE_EXECUTABLE} STREQUAL "NSUPDATE_EXECUTABLE-NOTFOUND") - message("-- Could not find nsupdate. Disabling DDNS functionality.") + message(STATUS "Could not find nsupdate. Disabling DDNS functionality.") elseif (${NSLOOKUP_EXECUTABLE} STREQUAL "NSLOOKUP_EXECUTABLE-NOTFOUND") - message("-- Could not find nslookup. Disabling DNS lookups.") + message(STATUS "Could not find nslookup. Disabling DNS lookups.") else () - message("-- Found nsupdate: ${NSUPDATE_EXECUTABLE}") - message("-- Found nslookup: ${NSLOOKUP_EXECUTABLE}") + message(STATUS "Found nsupdate: ${NSUPDATE_EXECUTABLE}") + message(STATUS "Found nslookup: ${NSLOOKUP_EXECUTABLE}") add_compile_flags(ipcpd-shim-udp -DCONFIG_OUROBOROS_ENABLE_DNS) endif () |