mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 09:21:12 +03:00
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:
@ -41,8 +41,8 @@ macro(add_custom_example example_bin example_src example_module_list)
|
||||
target_link_libraries (${example_bin} ${module})
|
||||
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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
Reference in New Issue
Block a user