diff --git a/README.md b/README.md index b51e1b1..3ba8351 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Once the library is installed, linking to it is easy! Add the following lines in ``` find_package(pe-parse REQUIRED) -target_link_libraries(your_target_name PRIVATE pe-parse::pe-parser-library) +target_link_libraries(your_target_name PRIVATE pe-parse::pe-parse) ``` You can see a full example in the [examples/peaddrconv](examples/peaddrconv) folder. diff --git a/examples/peaddrconv/main.cpp b/examples/peaddrconv/main.cpp index 437379e..67d727c 100644 --- a/examples/peaddrconv/main.cpp +++ b/examples/peaddrconv/main.cpp @@ -6,7 +6,7 @@ #include <climits> #include <cstring> -#include <parser-library/parse.h> +#include <pe-parse/parse.h> using ParsedPeRef = std::unique_ptr<peparse::parsed_pe, void (*)(peparse::parsed_pe *)>;