Refactor build system and simplify dependency management#5
Merged
Conversation
- Modularized and reorganized CMake configuration for maintainability, portability, and easier dependency management (notably: migrated imgui/implot imports, refined optional renderer logic, introduced TBB for parallelization). - Introduced/additionally documented utility scripts (`build.sh`), enhanced CMake and README instructions for standalone and parent project builds, and improved handling of install/include directories (`OVR_INSTALL_INCLUDEDIR`, adoption of `GNUInstallDirs`). - Enhanced GitHub Actions for consistency and modularity across platforms; clarified variable naming (CUDA architectures), and streamlined workflow structure. - Cleaned up repository: removed deprecated/configuration files, deprecated environment files, and updated `example.png` with new `example.jpg` asset and respective data/config references. - Improved `.gitignore` policies (added `__pycache__/` for Python), refined CMake detection (notably for `_GLIBCXX_USE_CXX11_ABI` with explicit ABI pinning), and streamlined and clarified `build.sh`/build script usage with added test support and better error handling.
…and clarity - Reorganized build configuration by moving inline CMake arguments into an array for easier management. - Updated CUDA architecture handling to reference the matrix architecture directly, removing redundant variables. - Enhanced flexibility and consistency across build environments by streamlining how matrix values are passed to CMake.
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.
Reorganize the top-level CMake flow into reusable configuration modules, add a
build.shentrypoint, and migrate imgui/implot and related dependencies away from dedicated submodules. This improves build portability, makes optional renderer components easier to gate, and reduces repository maintenance overhead.