aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmake/modules/UseCustomIncludes.cmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmake/modules/UseCustomIncludes.cmake b/cmake/modules/UseCustomIncludes.cmake
index 15e93f7043..be01303e14 100644
--- a/cmake/modules/UseCustomIncludes.cmake
+++ b/cmake/modules/UseCustomIncludes.cmake
@@ -11,10 +11,8 @@ macro( ADD_CUSTOM_CMAKE_INCLUDE )
foreach (_include ${_file_list})
set( _include_file ${CMAKE_CURRENT_SOURCE_DIR}/${_include} )
if( EXISTS ${_include_file} )
- message ( STATUS "Including ${_include_file}" )
+ message ( STATUS "Custom file found, including: ${_include_file}" )
include( ${_include_file} )
- else()
- message ( STATUS "No custom file found in ${CMAKE_CURRENT_SOURCE_DIR}" )
endif()
endforeach()
endmacro()