aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2019-11-15 09:04:17 +0000
committerDerek Lamberti <derek.lamberti@arm.com>2019-11-15 13:10:56 +0000
commit721b82f257afae0170a60ba355efceef6cff2355 (patch)
tree8beb627dee8979e284210024c1bd329821174325 /cmake
parentdb1a2834b4e9d74ed538943634212eccbd4a789b (diff)
downloadarmnn-721b82f257afae0170a60ba355efceef6cff2355.tar.gz
Print CMake messages on stdout rather than stderr
The default version of message("...") print to stderr, which is inappropriate for informational messages such as the ones we are printing in these cases. Using message(STATUS "...") makes these messages appear on stdout instead which is more appropriate. Change-Id: I02f41e6b4948e6938566f06d7164444bd5b8199e Signed-off-by: Robert Hughes <robert.hughes@arm.com>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GlobalConfig.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake
index af579488e6..191cd9d8aa 100644
--- a/cmake/GlobalConfig.cmake
+++ b/cmake/GlobalConfig.cmake
@@ -328,7 +328,7 @@ if(HEAP_PROFILING OR LEAK_CHECKING)
add_definitions("-DARMNN_LEAK_CHECKING_ENABLED=1")
endif()
else()
- message("Heap profiling and leak checking are disabled for referencetests")
+ message(STATUS "Heap profiling and leak checking are disabled for referencetests")
endif()
else()
# Valgrind only works with gperftools version number <= 2.4