Skip to content

Commit

Permalink
docs: reworded install-vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaskowicz1 committed Mar 28, 2024
1 parent 618a6bd commit d26152c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docpages/install/install-vcpkg.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ To install D++ on a system with VCPKG:

```cmd
c:\vcpkg>vcpkg list dpp
dpp:x64-windows 10.0.24 D++ Extremely Lightweight C++ Discord Library.
dpp:x64-windows 10.0.29 D++ Extremely Lightweight C++ Discord Library.
```

- You may now use the library within a `CMake` based project by adding instructions such as these to your `CMakeLists.txt`:
- You may now use the library within a `CMake` based project by adding the following instructions to your `CMakeLists.txt`:

```cmake
find_package(dpp CONFIG REQUIRED)
target_link_libraries(your_target_name PRIVATE dpp::dpp)
target_link_libraries(${PROJECT_NAME} PRIVATE dpp::dpp)
```

0 comments on commit d26152c

Please sign in to comment.