https://github.com/kde/libksieve
Library which manages Sieve support
https://github.com/kde/libksieve
Last synced: about 2 months ago
JSON representation
Library which manages Sieve support
- Host: GitHub
- URL: https://github.com/kde/libksieve
- Owner: KDE
- Created: 2015-12-09T03:50:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-23T11:20:56.000Z (about 2 months ago)
- Last Synced: 2025-04-23T12:27:22.507Z (about 2 months ago)
- Language: C++
- Homepage: https://invent.kde.org/pim/libksieve
- Size: 25.9 MB
- Stars: 9
- Watchers: 1
- Forks: 3
- 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/