diff options
author | Brad King <brad.king@kitware.com> | 2020-07-14 11:14:00 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-07-14 11:14:08 (GMT) |
commit | 41ede81341f8c57f4d4dd3c99c7a49227b4de964 (patch) | |
tree | 693ebbf36740309921b1d8306f0aa962713ffb52 /Source | |
parent | 8e7922e3828309f5c36d588be4ece7e9e324e8b9 (diff) | |
parent | 7cf2f7d2af708d262fc57b19c76b8d2fc63386e9 (diff) | |
download | CMake-41ede81341f8c57f4d4dd3c99c7a49227b4de964.zip CMake-41ede81341f8c57f4d4dd3c99c7a49227b4de964.tar.gz CMake-41ede81341f8c57f4d4dd3c99c7a49227b4de964.tar.bz2 |
Merge topic 'profiling-case-insensitive-command-names'
7cf2f7d2af cmake: Store lowercase command names in profiling output
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5007
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefileProfilingData.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileProfilingData.cxx b/Source/cmMakefileProfilingData.cxx index e0150dc..29fd440 100644 --- a/Source/cmMakefileProfilingData.cxx +++ b/Source/cmMakefileProfilingData.cxx @@ -58,7 +58,7 @@ void cmMakefileProfilingData::StartEntry(const cmListFileFunction& lff, cmsys::SystemInformation info; Json::Value v; v["ph"] = "B"; - v["name"] = lff.Name.Original; + v["name"] = lff.Name.Lower; v["cat"] = "cmake"; v["ts"] = Json::Value::UInt64( std::chrono::duration_cast<std::chrono::microseconds>( |