Is there a way to install eCAL without GUI dependencies? #960
-
Say if I need to operate eCAL in headless embedded environment, I would love to save space, hence no GUI dependencies is preferred. Currently there is a lot to install
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We currently don't provide a non-GUI debian installer as binary. This is kind of on our roadmap (especially for the PPA), but it's not realized, yet. You can however easily compile and pack a pure headless version yourself, by setting the following CMake Option to OFF: Line 71 in 3669e5e Here is a basic introduction on how to compile eCAL: If you want to closely re-create our official binaries, here are the CMake Options that we are using: ecal/.github/workflows/build-ubuntu-22.yml Lines 59 to 95 in 3669e5e Remember to turn off After compiling, you then call |
Beta Was this translation helpful? Give feedback.
We currently don't provide a non-GUI debian installer as binary. This is kind of on our roadmap (especially for the PPA), but it's not realized, yet.
You can however easily compile and pack a pure headless version yourself, by setting the following CMake Option to OFF:
ecal/CMakeLists.txt
Line 71 in 3669e5e
Here is a basic introduction on how to compile eCAL:
https://eclipse-ecal.github.io/ecal/development/building_ecal_from_source.html#fa-ubuntu-building-ecal-on-ubuntu
If you want to closely re-create our official binaries, here are the CMake Options that we are using:
ecal/.github/workflows/build-ubuntu-22.yml
Li…