From d26152c0c77b2ea926e50c4ee8f0947b77b09d41 Mon Sep 17 00:00:00 2001 From: Archie Jaskowicz Date: Thu, 28 Mar 2024 16:54:55 +0000 Subject: [PATCH] docs: reworded install-vcpkg --- docpages/install/install-vcpkg.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docpages/install/install-vcpkg.md b/docpages/install/install-vcpkg.md index 80717d578e..d672253c19 100644 --- a/docpages/install/install-vcpkg.md +++ b/docpages/install/install-vcpkg.md @@ -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) ```