feat(module): create C++20 module files for kcenon.database#315
Merged
Conversation
Create C++20 module infrastructure for database_system: Module structure: - src/modules/database.cppm: Primary module interface - src/modules/core.cppm: Core partition (types, backend, context) - src/modules/query.cppm: Query partition (builder, dialect) - src/modules/backends.cppm: Backends partition (conditional) CMake integration: - Add DATABASE_BUILD_MODULES option (requires CMake 3.28+) - Create database_modules target when enabled - Module scanning with CMAKE_CXX_SCAN_FOR_MODULES Dependencies: - kcenon.common (Tier 0) - Result<T>, error handling Part of #314
- Add module information to Latest Updates section - Add C++20 Module Support section with usage example - Document CMake 3.28+ requirement and DATABASE_BUILD_MODULES option Part of #314
Contributor
Benchmark ResultsNo comparison reports available. Baseline may not be established yet. |
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
* feat(module): add C++20 module files for kcenon.database Create C++20 module infrastructure for database_system: Module structure: - src/modules/database.cppm: Primary module interface - src/modules/core.cppm: Core partition (types, backend, context) - src/modules/query.cppm: Query partition (builder, dialect) - src/modules/backends.cppm: Backends partition (conditional) CMake integration: - Add DATABASE_BUILD_MODULES option (requires CMake 3.28+) - Create database_modules target when enabled - Module scanning with CMAKE_CXX_SCAN_FOR_MODULES Dependencies: - kcenon.common (Tier 0) - Result<T>, error handling Part of #314 * docs: add C++20 module support documentation - Add module information to Latest Updates section - Add C++20 Module Support section with usage example - Document CMake 3.28+ requirement and DATABASE_BUILD_MODULES option Part of #314
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Create C++20 module infrastructure for database_system as part of Issue #314.
src/modules/directoryDATABASE_BUILD_MODULESoptionModule Structure
kcenon.databasekcenon.database:corekcenon.database:querykcenon.database:backendsDependencies
kcenon.common(Tier 0) - RequiredFiles Changed
src/modules/database.cppm- Primary modulesrc/modules/core.cppm- Core partitionsrc/modules/query.cppm- Query partitionsrc/modules/backends.cppm- Backends partitiondatabase/CMakeLists.txt- Module build supportREADME.md- Documentation updateTest plan
Closes #314