diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:51:45 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:51:45 +0300 |
| commit | d3261e64152397db2dca4d691a990c6bc2a6f4dd (patch) | |
| tree | fac2f7be638651181a72453d714f0f96675c2b8b /archived/projt-launcher/docs/handbook/extra-cmake-modules.md | |
| parent | 31b9a8949ed0a288143e23bf739f2eb64fdc63be (diff) | |
| download | Project-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.tar.gz Project-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.zip | |
NOISSUE add archived projects
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'archived/projt-launcher/docs/handbook/extra-cmake-modules.md')
| -rw-r--r-- | archived/projt-launcher/docs/handbook/extra-cmake-modules.md | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/archived/projt-launcher/docs/handbook/extra-cmake-modules.md b/archived/projt-launcher/docs/handbook/extra-cmake-modules.md new file mode 100644 index 0000000000..43e175058d --- /dev/null +++ b/archived/projt-launcher/docs/handbook/extra-cmake-modules.md @@ -0,0 +1,67 @@ +# Extra CMake Modules `extra-cmake-modules/` + +> **Type**: CMake Module Collection +> **License**: BSD-3-Clause +> **Fork Origin**: [KDE ECM](https://api.kde.org/ecm/) +> **Status**: Detached Fork (independently maintained) +> **Latest Version**: 0.0.5-1 + +--- + +## Overview + +Extra CMake Modules (ECM) provides additional CMake modules beyond what CMake ships by default. This includes: + +- `find_package()` modules for common software +- Utility modules for common CMake tasks +- Toolchain files for cross-compilation +- Common build settings used by KDE software + +While ECM originates from the KDE project, it is useful for any CMake-based project. + +--- + +## Usage in ProjT Launcher + +ECM is used for: + +- **Qt integration** - Finding Qt components +- **Build utilities** - Common CMake patterns +- **Cross-platform support** - Toolchain configurations + +--- + +## Key Modules + +| Module | Purpose | +|--------|---------| +| `ECMQueryQt` | Query Qt installation details | +| `ECMInstallIcons` | Install icon themes | +| `ECMGenerateHeaders` | Generate forwarding headers | +| `ECMSetupVersion` | Configure project versioning | + +--- + +## Build Integration + +ECM is included as a subdirectory: + +```cmake +add_subdirectory(extra-cmake-modules) +list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/extra-cmake-modules/modules") +``` + +--- + +## Documentation + +- [ECM API Documentation](https://api.kde.org/ecm/) +- [KDE Community Wiki](https://community.kde.org/Policies/CMake_Coding_Style) +- [Original README](../../extra-cmake-modules/README.md) — Upstream library documentation + +--- + +## Related Documentation + +- [Third-party Libraries](./third-party.md) +- [Workflows](./workflows.md) |
