Home
last modified time | relevance | path

Searched full:vcpkg (Results 1 – 25 of 41) sorted by relevance

12

/external/libusb/
DINSTALL_WIN.txt17 Installing and building libusb via vcpkg
20 You can download and install libusb using the vcpkg dependency manager:
22 git clone https://github.com/Microsoft/vcpkg.git
23 cd vcpkg
24 ./bootstrap-vcpkg.bat
25 ./vcpkg integrate install
26 vcpkg install libusb
28 The libusb port in vcpkg is kept up to date by Microsoft team members and
30 or pull request (https://github.com/Microsoft/vcpkg) on the vcpkg repository.
/external/python/pybind11/docs/
Dinstalling.rst67 Include with vcpkg
69 You can download and install pybind11 using the Microsoft `vcpkg
70 <https://github.com/Microsoft/vcpkg/>`_ dependency manager:
74 git clone https://github.com/Microsoft/vcpkg.git
75 cd vcpkg
76 ./bootstrap-vcpkg.sh
77 ./vcpkg integrate install
78 vcpkg install pybind11
80 The pybind11 port in vcpkg is kept up to date by Microsoft team members and
82 or pull request <https://github.com/Microsoft/vcpkg/>`_ on the vcpkg
/external/jsoncpp/
DREADME.md44 ### The vcpkg dependency manager
45 You can download and install JsonCpp using the [vcpkg](https://github.com/Microsoft/vcpkg/) depende…
47 git clone https://github.com/Microsoft/vcpkg.git
48 cd vcpkg
49 ./bootstrap-vcpkg.sh
50 ./vcpkg integrate install
51 ./vcpkg install jsoncpp
53vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/harfbuzz_ng/
Dazure-pipelines.yml11 git clone https://github.com/Microsoft/vcpkg
12 cd vcpkg
13 .\bootstrap-vcpkg.bat
14 .\vcpkg integrate install
15 .\vcpkg install glib:x86-windows freetype:x86-windows cairo:x86-windows
17 …-DHB_BUILD_UTILS=ON -G "%generator%" -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake…
Dappveyor.yml61 …- 'if "%compiler%"=="msvc" if not "%platform%"=="ARM" vcpkg install glib:%triplet% freetype:%tripl…
65 …D_UTILS=ON -G "%generator%" -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake'
79 - c:\tools\vcpkg\installed\
DBUILD.md10 on Windows, consider using [vcpkg](https://github.com/Microsoft/vcpkg),
/external/capstone/
DCOMPILE_MSVC.TXT112 (3) Installing and building capstone via vcpkg
114 …You can download and install capstone using the vcpkg(https://github.com/Microsoft/vcpkg) dependen…
116 git clone https://github.com/Microsoft/vcpkg.git
117 cd vcpkg
118 ./bootstrap-vcpkg.sh
119 ./vcpkg integrate install
120 vcpkg install capstone
122vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/flatbuffers/docs/source/
DBuilding.md32 ## Building with VCPKG
34 You can download and install flatbuffers using the [vcpkg](https://github.com/Microsoft/vcpkg/) dep…
36 git clone https://github.com/Microsoft/vcpkg.git
37 cd vcpkg
38 ./bootstrap-vcpkg.sh
39 ./vcpkg integrate install
40 ./vcpkg install flatbuffers
42 The flatbuffers port in vcpkg is kept up to date by Microsoft team members and community contributo…
43 …ease [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
/external/rust/crates/grpcio-sys/grpc/src/cpp/
DREADME.md143 ### Install using vcpkg package
144 gRPC is available using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager:
147 # install vcpkg package manager on your system using the official instructions
148 git clone https://github.com/Microsoft/vcpkg.git
149 cd vcpkg
150 ./bootstrap-vcpkg.sh
151 ./vcpkg integrate install
153 # install gRPC using vcpkg package manager
154 vcpkg install grpc
157vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/brotli/
DREADME.md30 #### Vcpkg subsubsection
32 You can download and install brotli using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependen…
34 git clone https://github.com/Microsoft/vcpkg.git
35 cd vcpkg
36 ./bootstrap-vcpkg.sh
37 ./vcpkg integrate install
38 vcpkg install brotli
40vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/rust/crates/libsqlite3-sys/
DCargo.toml.orig18 buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
20 min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
21 min_sqlite_version_3_6_23 = ["pkg-config", "vcpkg"]
22 min_sqlite_version_3_7_7 = ["pkg-config", "vcpkg"]
23 min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
45 vcpkg = { version = "0.2", optional = true }
DCargo.toml40 buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
46 min_sqlite_version_3_6_23 = ["pkg-config", "vcpkg"]
47 min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
48 min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
49 min_sqlite_version_3_7_7 = ["pkg-config", "vcpkg"]
57 [target."cfg(target_env = \"msvc\")".build-dependencies.vcpkg]
Dbuild.rs195 #[cfg(all(feature = "vcpkg", target_env = "msvc"))]
196 extern crate vcpkg;
238 if cfg!(all(feature = "vcpkg", target_env = "msvc")) { in find_sqlite()
294 #[cfg(all(feature = "vcpkg", target_env = "msvc"))]
296 // See if vcpkg can find it. in try_vcpkg()
297 if let Ok(mut lib) = vcpkg::Config::new().probe(link_lib()) { in try_vcpkg()
306 #[cfg(not(all(feature = "vcpkg", target_env = "msvc")))]
DAndroid.bp52 "vcpkg",
69 "vcpkg",
/external/fmtlib/doc/
Dusage.rst168 Vcpkg chapter
171 You can download and install fmt using the `vcpkg
172 <https://github.com/Microsoft/vcpkg>`__ dependency manager::
174 git clone https://github.com/Microsoft/vcpkg.git
175 cd vcpkg
176 ./bootstrap-vcpkg.sh
177 ./vcpkg integrate install
178 ./vcpkg install fmt
180 The fmt port in vcpkg is kept up to date by Microsoft team members and community
182 request <https://github.com/Microsoft/vcpkg>`__ on the vcpkg repository.
/external/zstd/
DREADME.md154 ### VCPKG subsection
155 You can build and install zstd [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
157 git clone https://github.com/Microsoft/vcpkg.git
158 cd vcpkg
159 ./bootstrap-vcpkg.sh
160 ./vcpkg integrate install
161 ./vcpkg install zstd
163 The zstd port in vcpkg is kept up to date by Microsoft team members and community contributors.
164 …ease [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
/external/tinyxml2/
Dreadme.md270 Building TinyXML-2 - Using vcpkg
273 You can download and install TinyXML-2 using the [vcpkg](https://github.com/Microsoft/vcpkg) depend…
275 git clone https://github.com/Microsoft/vcpkg.git
276 cd vcpkg
277 ./bootstrap-vcpkg.sh
278 ./vcpkg integrate install
279 ./vcpkg install tinyxml2
281vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/deqp-deps/glslang/
DREADME.md275 ## Building glslang - Using vcpkg
277 You can download and install glslang using the [vcpkg](https://github.com/Microsoft/vcpkg) dependen…
279 git clone https://github.com/Microsoft/vcpkg.git
280 cd vcpkg
281 ./bootstrap-vcpkg.sh
282 ./vcpkg integrate install
283 ./vcpkg install glslang
285vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/curl/docs/
DINSTALL.md10 ## Building using vcpkg
12 You can download and install curl and libcurl using the [vcpkg](https://github.com/Microsoft/vcpkg/…
14 git clone https://github.com/Microsoft/vcpkg.git
15 cd vcpkg
16 ./bootstrap-vcpkg.sh
17 ./vcpkg integrate install
18 vcpkg install curl[tool]
20vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/oss-fuzz/projects/iroha/
DDockerfile29 RUN cp -R $SRC/iroha/vcpkg /tmp/vcpkg-vars
31 RUN ["bash", "/tmp/vcpkg-vars/oss/build_deps.sh"]
/external/rust/crates/rusqlite/
DREADME.md115 [Vcpkg](https://github.com/Microsoft/vcpkg) installation for MSVC ABI builds.
133 and [vcpkg](https://github.com/mcgoo/vcpkg-rs) have some additional configuration
134 options. The default when using vcpkg is to dynamically link,
136 `vcpkg install sqlite3:x64-windows` will install the required library.
/external/libwebsockets/READMEs/
DREADME.build.md4 You can download and install lws using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency …
6 git clone https://github.com/microsoft/vcpkg.git
7 cd vcpkg
8 ./bootstrap-vcpkg.sh
9 ./vcpkg integrate install
10 vcpkg install libwebsockets
12vcpkg is kept up to date by Microsoft team members and community contributors. If the version is o…
/external/rust/crates/libz-sys/
Dbuild.rs4 extern crate vcpkg;
188 // see if there is a vcpkg tree with zlib installed in try_vcpkg()
189 match vcpkg::Config::new() in try_vcpkg()
196 println!("note, vcpkg did not find zlib: {}", e); in try_vcpkg()
/external/rust/crates/libsqlite3-sys/patches/
DAndroid.bp.patch17 "vcpkg",
34 "vcpkg",
/external/protobuf/src/
DREADME.md193 Protobuf and its dependencies can be installed directly by using `vcpkg`:
195 >vcpkg install protobuf protobuf:x64-windows
199 >vcpkg install protobuf[zlib] protobuf[zlib]:x64-windows
201 See https://github.com/Microsoft/vcpkg for more information.

12