https://github.com/kde/akonadi-calendar-tools
Console applications and utilities for managing calendars in Akonadi
https://github.com/kde/akonadi-calendar-tools
Last synced: about 1 month ago
JSON representation
Console applications and utilities for managing calendars in Akonadi
- Host: GitHub
- URL: https://github.com/kde/akonadi-calendar-tools
- Owner: KDE
- Created: 2016-08-30T04:56:21.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-14T04:53:19.000Z (about 2 months ago)
- Last Synced: 2025-04-14T05:35:28.669Z (about 2 months ago)
- Language: C++
- Homepage: https://invent.kde.org/pim/akonadi-calendar-tools
- Size: 2.35 MB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: readme-build-ftime.txt
- License: LICENSES/BSD-3-Clause.txt
Awesome Lists containing this project
README
# Analyzing Build Performance
For debug build time:
We need ClangBuildAnalyzer
`
git clone https://github.com/aras-p/ClangBuildAnalyzer
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX= ../
make install
`## Command line
cmake -preset ftime-trace
ClangBuildAnalyzer --start $PWD/build-ftime-trace
cmake --build --preset ftime-traceClangBuildAnalyzer --stop $PWD/build-ftime-trace build-ftime.txt
ClangBuildAnalyzer --analyze build-ftime.txt > analyze-build-ftime.txt
see https://aras-p.info/blog/2019/09/28/Clang-Build-Analyzer/