Improve CMake output when registering benchmarks
authorEric Fiselier <eric@efcs.ca>
Wed, 7 Sep 2016 00:57:26 +0000 (00:57 +0000)
committerEric Fiselier <eric@efcs.ca>
Wed, 7 Sep 2016 00:57:26 +0000 (00:57 +0000)
llvm-svn: 280771

libcxx/benchmarks/CMakeLists.txt

index 77df6fa..673d4bb 100644 (file)
@@ -120,7 +120,7 @@ endmacro()
 file(GLOB BENCHMARK_TESTS "*.bench.cpp")
 foreach(test_path ${BENCHMARK_TESTS})
   get_filename_component(test_file "${test_path}" NAME)
-  message(STATUS "-- Adding Benchmark: ${test_file}")
+  message(STATUS "Adding Benchmark: ${test_file}")
   string(REPLACE ".bench.cpp" "" test_name "${test_file}")
   add_benchmark_test(${test_name} ${test_file})
 endforeach()