Skip to content

Commit

Permalink
Remove libuuid dependency.
Browse files Browse the repository at this point in the history
It was added as part of:
#26

This was a dependency in ANTLR, but it looks like it has been removed recently:
antlr/antlr4@0b8ed20

This was found by @petertrotman in
#73
  • Loading branch information
ArthurSonzogni committed Mar 25, 2024
1 parent 88e365d commit 1e80fb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: "Install Linux Dependencies"
if: ${{ runner.os == 'Linux' }}
run: sudo apt install libboost-graph-dev uuid-dev
run: sudo apt install libboost-graph-dev

- name: "Install boost for windows"
if: ${{ runner.os == 'Windows' }}
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:

- name: "Install Linux Dependencies"
if: ${{ runner.os == 'Linux' }}
run: sudo apt install libboost-graph-dev uuid-dev
run: sudo apt install libboost-graph-dev

- name: "Install boost for windows"
if: ${{ runner.os == 'Windows' }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -637,10 +637,10 @@ Binaries using multiple formats are provided in the [release](https://github.com

## Build

This depends on cmake, uuid-dev and libboost-graph-dev
This depends on cmake, and libboost-graph-dev
On Linux:
```sh
sudo apt install make uuid-dev libboost-graph-dev cmake default-jdk;
sudo apt install make libboost-graph-dev cmake default-jdk;
mkdir build;
cd build;
cmake .. -DCMAKE_BUILD_TYPE=Release
Expand Down
1 change: 0 additions & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ parts:
- pkg-config
- unzip
- curl
- uuid-dev
- openjdk-11-jdk
- libboost-graph-dev
override-pull: |
Expand Down

0 comments on commit 1e80fb5

Please sign in to comment.