cmake: Cleanup of cmake messages.

* Removed unessesary spaces.
    * Changed INFO to STATUS since INFO is not a cmake message
      keyword.
    * Changed a few messages from status/info to warning.
    * Fixed trailing carriage return on yuidoc execute_process.
    * Removed my debug messages for CXX vs C.

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck
2016-09-05 21:57:41 -07:00
parent 09b1bb9a60
commit 2b6dd5f3fd
8 changed files with 24 additions and 25 deletions

View File

@ -41,8 +41,8 @@ macro(add_custom_example example_bin example_src example_module_list)
target_link_libraries (${example_bin} ${module}-c)
endforeach()
else()
MESSAGE(INFO " Ignored ${example_bin}")
set (example_bin "")
message (WARNING "Ignored ${example_bin}")
set (example_bin "")
endif()
endmacro()
@ -66,7 +66,7 @@ macro(add_example example_name)
endif()
endif()
else()
MESSAGE(INFO " Ignored ${example_bin}")
message (WARNING "Ignored ${example_bin}")
endif()
endmacro()