-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better build/dependencies documentation
- Loading branch information
1 parent
46d20b2
commit 8a3b3ad
Showing
5 changed files
with
19 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ include(FetchContent) | |
|
||
FETCHCONTENT_DECLARE( | ||
fmt | ||
URL ${SRC_FMT} | ||
URL "${SRC_FMT}" | ||
TIMEOUT 180 | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# ArmoniK Api Cpp | ||
|
||
## Build requirements | ||
- cmake 3.22+ | ||
- C++ compiler with C++17 support | ||
- grpc 1.54 - 1.56.2 | ||
- protobuf | ||
- fmt 10.1.0 (https://github.com/fmtlib/fmt/archive/refs/tags/10.1.0.tar.gz) | ||
- simdjson 3.2.2 (https://github.com/simdjson/simdjson/archive/refs/tags/v3.2.2.tar.gz) | ||
- gtest (https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip) (if BUILD_TEST=ON) | ||
|
||
## How to build | ||
```shell | ||
cmake -S . -B out | ||
cmake --build out | ||
cmake --install out | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.