Skip to content

Commit 2cd413c

Browse files
authored
Remove jwtcpp from contrib #38 (#124)
1 parent 1bd4331 commit 2cd413c

File tree

20 files changed

+25
-3245
lines changed

20 files changed

+25
-3245
lines changed

.github/actions/prepare_vm/action.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@ runs:
3737
mkdir build && cd build
3838
cmake -DCMAKE_BUILD_TYPE=Release ..
3939
sudo cmake --build . --config Release --target install
40+
cd ../../
41+
wget -O jwt-cpp-0.7.0.tar.gz https://github.com/Thalhammer/jwt-cpp/archive/refs/tags/v0.7.0.tar.gz
42+
tar -xvzf jwt-cpp-0.7.0.tar.gz && cd jwt-cpp-0.7.0
43+
mkdir build && cd build
44+
cmake -DCMAKE_BUILD_TYPE=Release ..
45+
sudo cmake --build . --config Release --target install
46+
cd ../../
4047
(V=4.8.1; curl -L https://github.com/ccache/ccache/releases/download/v${V}/ccache-${V}-linux-x86_64.tar.xz | \
4148
sudo tar -xJ -C /usr/local/bin/ --strip-components=1 --no-same-owner ccache-${V}-linux-x86_64/ccache)
42-
cd ../../
4349
sudo rm -r llvm.sh libiconv-1.15.tar.gz v0.5.2.tar.gz v1.1.0.tar.gz \
44-
libiconv-1.15 base64-0.5.2 brotli-1.1.0
50+
libiconv-1.15 base64-0.5.2 brotli-1.1.0 jwt-cpp-0.7.0 jwt-cpp-0.7.0.tar.gz

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ If you ok with this warning, then...
3131
- base64
3232
- brotli 1.1.10+
3333
- libdouble-conversion-dev
34+
- jwt-cpp
3435

3536
## Runtime requirements
3637

@@ -73,6 +74,12 @@ cd brotli-1.1.0
7374
mkdir build && cd build
7475
cmake -DCMAKE_BUILD_TYPE=Release ..
7576
sudo cmake --build . --config Release --target install
77+
78+
wget -O jwt-cpp-0.7.0.tar.gz https://github.com/Thalhammer/jwt-cpp/archive/refs/tags/v0.7.0.tar.gz
79+
tar -xvzf jwt-cpp-0.7.0 && cd jwt-cpp-0.7.0
80+
mkdir build && cd build
81+
cmake -DCMAKE_BUILD_TYPE=Release ..
82+
sudo cmake --build . --config Release --target install
7683
```
7784

7885
## Create the work directory

cmake/external_libs.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ find_package(LZ4 REQUIRED)
1414
find_package(Snappy 1.1.8 REQUIRED)
1515
find_package(base64 REQUIRED)
1616
find_package(Brotli 1.1.0 REQUIRED)
17+
find_package(jwt-cpp REQUIRED)
1718
find_package(GTest REQUIRED)
1819
find_package(double-conversion REQUIRED)
1920

contrib/libs/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
add_subdirectory(jwt-cpp)
21
add_subdirectory(libc_compat)
32
add_subdirectory(lzmasdk)
43
add_subdirectory(nayuki_md5)

contrib/libs/jwt-cpp/CMakeLists.darwin-arm64.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

contrib/libs/jwt-cpp/CMakeLists.darwin-x86_64.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

contrib/libs/jwt-cpp/CMakeLists.linux-aarch64.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

contrib/libs/jwt-cpp/CMakeLists.linux-x86_64.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

contrib/libs/jwt-cpp/CMakeLists.txt

Lines changed: 0 additions & 19 deletions
This file was deleted.

contrib/libs/jwt-cpp/CMakeLists.windows-x86_64.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)