DevDungeon
- Labs
Knowledge
Social
DevDungeon
Knowledge
Social
This is an old revision of the document!
Homepage: https://vcpkg.io/en/index.html
Follow official installation instructions at: https://vcpkg.io/en/getting-started.html
In short, something like the following. It will install vcpkg.exe in your CWD when you execute bootstrap.
git clone https://github.com/Microsoft/vcpkg.git cd vcpkg ./bootstrap-vcpkg ./vcpkg ./vcpkg integrate install
vcpkg search sqlite
vcpkg install wxwidgets
When it's done, it will tell you how to include it for CMake
The package wxwidgets provides CMake integration: find_package(wxWidgets REQUIRED) target_include_directories(main PRIVATE ${wxWidgets_INCLUDE_DIRS}) target_link_libraries(main PRIVATE ${wxWidgets_LIBRARIES})
vpckg list