You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
766 B
23 lines
766 B
# Downloads [fmt v7.1.3](https://fmt.dev/7.1.3/) using [vcpkg](https://vcpkg.io/) and links an `example` target to it:
|
|
|
|
[project]
|
|
name = "vcpkg"
|
|
description = "Dependencies from vcpkg"
|
|
|
|
# See https://github.com/microsoft/vcpkg/releases for vcpkg versions
|
|
# See https://vcpkg.io/en/packages.html for available packages
|
|
[vcpkg]
|
|
version = "2022.11.14"
|
|
packages = ["fmt"]
|
|
|
|
[find-package]
|
|
fmt = {}
|
|
|
|
[target.example]
|
|
type = "executable"
|
|
sources = ["src/main.cpp"]
|
|
link-libraries = ["fmt::fmt"]
|
|
|
|
# The bootstrapping of vcpkg is fully automated and no user interaction is necessary. You can disable vcpkg by setting `CMKR_DISABLE_VCPKG=ON`.
|
|
# To specify package features you can use the following syntax: `imgui[docking-experimental,freetype,sdl2-binding,opengl3-binding]`.
|