Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Oct 6, 2024
1 parent ba294bd commit 1090999
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ Main features:
- [Download / Install](#downloads--install)
- [Getting started](#getting-started)
- [Documentation](#documentation)
- [Sphinx](https://lief-project.github.io/doc/stable/index.html)
- [Rust](https://lief.re/doc/stable/rust/lief/)
- [Sphinx](https://lief-project.github.io/doc/latest/index.html)
- [Doxygen](https://lief-project.github.io/doc/latest/doxygen/index.html)
- Tutorials:
- [Parse and manipulate formats](https://lief-project.github.io/doc/latest/tutorials/01_play_with_formats.html)
Expand All @@ -90,12 +91,27 @@ Main features:

## Downloads / Install

First, make sure to have an updated version of setuptools:
## C++

```console
pip install setuptools --upgrade
```cmake
find_package(LIEF REQUIRED)
target_link_libraries(my-project LIEF::LIEF)
```

## Rust

```toml
[package]
name = "my-awesome-project"
version = "0.0.1"
edition = "2021"

[dependencies]
lief = 0.15.1
```

## Python

To install the latest **version** (release):

```console
Expand Down Expand Up @@ -161,7 +177,6 @@ if let Some(Binary::PE(pe)) = Binary::parse(path.as_str()) {
}
```


### C++

```cpp
Expand Down Expand Up @@ -219,6 +234,7 @@ int main(int argc, char** argv) {
* [Tutorial](https://lief-project.github.io/doc/latest/tutorials/index.html)
* [API](https://lief-project.github.io/doc/latest/api/index.html)
* [Doxygen](https://lief-project.github.io/doc/latest/doxygen/index.html)
* [Rust](https://lief.re/doc/stable/rust/lief/)

## Contact

Expand Down

0 comments on commit 1090999

Please sign in to comment.