Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,9 @@ Download the project or use git to clone it:
$ git clone https://github.com/Excse/AresByteCode.git
```

Install libzip (if not already on the system) to enable the building of the library.
```sh
$ sudo apt install libzip-dev
```

Navigate to the directory where the project is located and execute these commands:
```sh
$ cmake -S . -B build -DBUILD_TESTING=OFF
$ cmake -S . -B build -DBUILD_TESTING=OFF -DMAKE_INSTALLABLE=ON -DBUILD_SHARED_LIBS=OFF
$ cmake --build build
$ cmake --install build
$ sudo make install
Expand All @@ -40,5 +35,5 @@ and in CMakeLists.txt:
```cmake
find_package(aresbc CONFIG REQUIRED)

target_link_libraries(!!PROJECT_NAME!! PRIVATE ${LIBARESBC_LIBRARY})
target_link_libraries(<PROJECT_NAME> PRIVATE aresbc::aresbc)
```