You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added fetch_content for everest-cmake. If no everest-cmake is found, everest-cmake will be download via fetch_content
* Updating README.md: One sentence to everest-cmake and fetch content and adding one block describing which dependencies should be installed
Signed-off-by: Sebastian Lukas <sebastian.lukas@pionix.de>
Copy file name to clipboardexpand all lines: README.md
+17-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,23 @@ ISO15118 support is distributed accross multiple repositories and modules in EVe
46
46
Dependencies
47
47
------------
48
48
49
-
To build this library you need [everest-cmake](https://github.com/EVerest/everest-cmake) checkout in the same directory as libiso15118.
49
+
To build this library you need [everest-cmake](https://github.com/EVerest/everest-cmake) checkout in the same directory as libiso15118. If no `everest-cmake` is available, it is retrieved via FetchContent.
50
+
51
+
For Debian GNU/Linux 12 you will need the following dependencies:
52
+
53
+
```bash
54
+
sudo apt update
55
+
sudo apt install build-essential cmake libssl-dev
56
+
```
57
+
58
+
For Fedora 41+ you will need the following dependencies:
59
+
60
+
```bash
61
+
sudo dnf update
62
+
sudo dnf install gcc gcc-c++ git make cmake openssl-devel
63
+
```
64
+
65
+
OpenSSL version 3.0 or above is required. The build system `ninja` is optional.
0 commit comments