vcpkg/ports/gamenetworkingsockets/fix-depend-protobuf.patch
Lily Wang cc35818bd4
[gamenetworkingsockets] Add find_dependency(protobuf CONFIG REQUIRED) (#28615)
* [gamenetworkingsockets] Add find_dependency(protobuf CONFIG REQUIRED)

* x-add-version

* apply suggestions

* x-add-version
2022-12-29 23:54:23 -08:00

13 lines
416 B
Diff

diff --git a/cmake/GameNetworkingSocketsConfig.cmake.in b/cmake/GameNetworkingSocketsConfig.cmake.in
index 1a27988..5076a6e 100644
--- a/cmake/GameNetworkingSocketsConfig.cmake.in
+++ b/cmake/GameNetworkingSocketsConfig.cmake.in
@@ -3,6 +3,7 @@
include(CMakeFindDependencyMacro)
find_dependency(Threads)
+find_dependency(Protobuf)
if(@USE_CRYPTO@ STREQUAL "OpenSSL")
find_dependency(OpenSSL)