User Tools

Site Tools


programming:vcpkg

This is an old revision of the document!


vcpkg

Install

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

Search for packages

vcpkg search sqlite

Install packages

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})

List installed packages

vpckg list

Noteworthy packages

  • curl, cpr, curl[non-http], curl[openssl], curl[ssl], curl[ssh], curlpp, restclient-cpp
  • sqlite3, sqlite3[tool], sqlitecpp
  • poco, poco[mariadb], poco[mysql], poco[netssl], poco[pdf], poco[postgresql], poco[sqlite3]
  • wxwidgets
  • gtk
  • gtkmm
  • qtbase
  • fltk
  • tcl
  • python3
  • freeglut
  • glfw3
  • glui
  • sdl1, sdl2, sdl2-gfx, sdl2-image[*], sdl2-mixer[*], sdl2-net, sdl2-ttf, sdl2pp
  • sfml
  • allegro5
  • ogre
  • chipmunk (physics), physx, bullet3
  • openjpeg, mozjpeg, jasper
  • opencv2
  • ffmpeg
  • tinyexif
  • libmpeg2
  • libpng, pngpp
  • boost, boost[*]
  • libpcap, winpcap
  • bitserializer (json/xml/yaml)
  • json-c, json11, jsoncpp, picojson, rapidjson, sajson,
  • libxml2, libxmlmm, libxmlpp, tinyxml2, rapidxml, pugixml
  • 7zip, liblzma, zlip, gzip-hpp
  • openssl
  • libssh2
  • opencv4
  • audiofile
  • libogg, libvorbis
  • libflac
  • libsndfile
  • openal-soft
  • duckx (docx)
  • libxlsxwriter, xlnt
programming/vcpkg.1623567853.txt.gz ยท Last modified: 2021/06/13 07:04 by nanodano