[libcxx] r280771 - Improve CMake output when registering benchmarks
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 6 17:57:26 PDT 2016
Author: ericwf
Date: Tue Sep 6 19:57:26 2016
New Revision: 280771
URL: http://llvm.org/viewvc/llvm-project?rev=280771&view=rev
Log:
Improve CMake output when registering benchmarks
Modified:
libcxx/trunk/benchmarks/CMakeLists.txt
Modified: libcxx/trunk/benchmarks/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/benchmarks/CMakeLists.txt?rev=280771&r1=280770&r2=280771&view=diff
==============================================================================
--- libcxx/trunk/benchmarks/CMakeLists.txt (original)
+++ libcxx/trunk/benchmarks/CMakeLists.txt Tue Sep 6 19:57:26 2016
@@ -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()
More information about the cfe-commits
mailing list