refactor: rename CMake project from NetworkSystem to network_system#916
Merged
Merged
Conversation
Closes #914 - Rename project() from NetworkSystem to network_system - Rename all CMake targets (add_library, target_link_libraries, etc.) - Rename cmake module files to snake_case: NetworkSystemFeatures.cmake -> network_system_features.cmake NetworkSystemDependencies.cmake -> network_system_dependencies.cmake NetworkSystemCPack.cmake -> network_system_cpack.cmake NetworkSystemInstall.cmake -> network_system_install.cmake NetworkSystemIntegration.cmake -> network_system_integration.cmake - Update config.cmake.in namespace to network_system::network_system - Remove legacy backward-compatibility variables - Update all test/sample/benchmark CMakeLists.txt references - Update vcpkg port usage and portfile - Update documentation CMake examples - Update release workflow - No backward-compatible aliases provided (clean break)
Contributor
Performance ComparisonBase Branch ResultsNo base results PR Branch ResultsNo PR results |
Contributor
Coverage Report
Coverage DetailsFull HTML report is available as a build artifact. |
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
…916) Closes #914 - Rename project() from NetworkSystem to network_system - Rename all CMake targets (add_library, target_link_libraries, etc.) - Rename cmake module files to snake_case: NetworkSystemFeatures.cmake -> network_system_features.cmake NetworkSystemDependencies.cmake -> network_system_dependencies.cmake NetworkSystemCPack.cmake -> network_system_cpack.cmake NetworkSystemInstall.cmake -> network_system_install.cmake NetworkSystemIntegration.cmake -> network_system_integration.cmake - Update config.cmake.in namespace to network_system::network_system - Remove legacy backward-compatibility variables - Update all test/sample/benchmark CMakeLists.txt references - Update vcpkg port usage and portfile - Update documentation CMake examples - Update release workflow - No backward-compatible aliases provided (clean break)
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
Renames the CMake project from PascalCase (
NetworkSystem) to snake_case (network_system) across the entire build system and documentation.project(NetworkSystem)toproject(network_system)and all CMake targetsconfig.cmake.innamespace tonetwork_system::network_systemCloses #914
What
NetworkSystemnetwork_systemNetworkSystemnetwork_systemnetwork_system::NetworkSystemnetwork_system::network_systemNetworkSystemFeatures.cmakeetc.network_system_features.cmakeetc.Why
Part of the kcenon ecosystem standardization (Phase 2). All CMake project names are being unified to snake_case. No backward-compatible aliases are provided - this is a clean break.
Where
CMakeLists.txtand 5 cmake module files (renamed)cmake/network_system-config.cmake.inCMakeLists.txtfiles (tests, samples, benchmarks, fuzz, examples, integration)vcpkg-ports/kcenon-network-system/(usage + portfile).github/workflows/release.ymlHow
NetworkSystemBridge)Test plan
find_package(network_system)works correctlytarget_link_libraries(... network_system::network_system)resolves