mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:49:33 +08:00
796d677653
* Update asio-grpc to v1.3.0 * Update asio-grpc baseline and versions * Remove boost-asio, libunifex and standalone-asio features from asio-grpc. Add a usage file. Update it to 1.3.1 * Remove asio-grpc 1.3.0 from versions/
16 lines
508 B
Plaintext
16 lines
508 B
Plaintext
The package asio-grpc can be used with different backends.
|
|
|
|
find_package(asio-grpc CONFIG REQUIRED)
|
|
|
|
The Boost.Asio backend. Install "boost-asio" and link with:
|
|
|
|
target_link_libraries(main PRIVATE asio-grpc::asio-grpc)
|
|
|
|
The standalone Asio backend. Install "asio" and link with:
|
|
|
|
target_link_libraries(main PRIVATE asio-grpc::asio-grpc-standalone-asio)
|
|
|
|
The libunifex backend. Install "libunifex" and link with:
|
|
|
|
target_link_libraries(main PRIVATE asio-grpc::asio-grpc-unifex)
|