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
Copy file name to clipboardExpand all lines: README.md
+28-31Lines changed: 28 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,37 +28,34 @@ To get started with Jellyfish, ensure you have the following installed:
28
28
29
29
-**Meson Build System**: If you don’t have Meson installed, follow the installation instructions on the official [Meson website](https://mesonbuild.com/Getting-meson.html).
30
30
31
-
### Adding Jellyfish Dependency
32
-
33
-
#### Adding Jellyfish Dependency With Meson
34
-
35
-
1.**Install Meson Build System**:
36
-
Install Meson version `1.3` or newer:
37
-
```sh
38
-
python -m pip install meson # To install Meson
39
-
python -m pip install --upgrade meson # To upgrade Meson
40
-
```
41
-
42
-
2.**Create a `.wrap` File**:
43
-
Add the `fossil-jellyfish.wrap` file in your `subprojects` directory and include the following content:
In your `meson.build` file, integrate Jellyfish by adding the following line:
59
-
```ini
60
-
dep = dependency('fossil-jellyfish')
61
-
```
31
+
### Adding Dependency
32
+
33
+
#### Adding via Meson Git Wrap
34
+
35
+
To add a git-wrap, place a `.wrap` file in `subprojects` with the Git repo URL and revision, then use `dependency('fossil-jellyfish')` in `meson.build` so Meson can fetch and build it automatically.
36
+
37
+
#### Adding via Conan GitHub repository
38
+
39
+
packages directly from a GitHub repository if it contains a valid `conanfile.py`.
**Note**: For the best experience, always use the latest releases. Visit the [releases](https://github.com/fossillogic/fossil-jellyfish/releases) page for the latest versions.
0 commit comments