Quick Start for Contributors
This guide provides short information for developers to start to work with sc-component-manager quickly. You can always learn more about the sc-component-manager's build system.
Install project
Install sc-component-manager via git:
git clone https://github.com/ostis-ai/sc-component-manager
cd sc-component-manager
git submodule update --init --recursive
Check CMake
Install pipx first using pipx installation guide if not already installed.
Ensure you are using CMake version 3.24 or newer. Verify your version with:
To upgrade CMake, run:
# Use pipx to install cmake if not already installed
pipx install cmake
pipx ensurepath
# relaunch your shell after installation
exec $SHELL
Install Ninja generator for CMake, to use CMake presets:
# Use pipx to install ninja if not already installed
pipx install ninja
pipx ensurepath
# relaunch your shell after installation
exec $SHELL
Start develop sc-component-manager with Conan
Install Conan
Install Conan, to build sc-component-manager dependencies with Conan-provided dependencies:
# Use pipx to install conan if not already installed
pipx install conan
pipx ensurepath
# relaunch your shell after installation
exec $SHELL
Add Conan remote repository
Add Conan remote repository with the specified URL:
Use sc-component-manager in Debug
Install dependencies with Conan
sc-component-manager is an extension to sc-machine, so sc-machine is main dependency for sc-component-manager. To install it, run in the root of the project:
Build sc-component-manager in Debug
To build sc-component-manager in debug mode using Conan-provided dependencies, run:
Note: By default, configure preset debug
enables building sc-component-manager tests.
Run sc-component-manager tests in Debug
After that, you can go to build/Debug
and run tests via ctest
:
You can also check code formatting. To learn more, go to the CMake flags page.
Use sc-component-manager in Release
Install dependencies with Conan
To install it, run in the root of the project:
Build sc-component-manager in Release
To build sc-component-manager in release mode using Conan-provided dependencies, run:
To build sc-component-manager with tests in release mode using Conan-provided dependencies, run:
# release build type with tests
cmake --preset release-with-tests-conan
cmake --build --preset release
Run sc-component-manager tests in Release
After that, you can run tests:
You can also check code formatting. To learn more, go to the CMake flags page.
Run sc-component-manager
Before launching sc-component-manager, extract sc-machine from GitHub Releases or build it.
To launch sc-component-manager, run: