mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:48:59 +08:00
b39520920f
* grpc: Update to 1.50.1 * dos2unix Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
11 lines
434 B
CMake
11 lines
434 B
CMake
file(GLOB GRPC_PLUGINS "${_IMPORT_PREFIX}/../@HOST_TRIPLET@/tools/grpc/grpc_*_plugin*")
|
|
|
|
foreach(PLUGIN ${GRPC_PLUGINS})
|
|
get_filename_component(PLUGIN_NAME "${PLUGIN}" NAME_WE)
|
|
add_executable(gRPC::${PLUGIN_NAME} IMPORTED)
|
|
set_property(TARGET gRPC::${PLUGIN_NAME} APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
set_target_properties(gRPC::${PLUGIN_NAME} PROPERTIES
|
|
IMPORTED_LOCATION_RELEASE "${PLUGIN}"
|
|
)
|
|
endforeach()
|