Skip to content

Commit

Permalink
fix cmake: correctly set grpc-reflection found flag
Browse files Browse the repository at this point in the history
Tests: протестировано CI

Pull Request resolved: #773
commit_hash:b3fb14cc152e2aeac32f6c5929213cd356d1e1fd
  • Loading branch information
rtkid-nik authored and apolukhin committed Nov 26, 2024
1 parent 12abfd5 commit 199115f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/install/userver-grpc-reflection-config.cmake
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
include_guard(GLOBAL)

if(userver_grpc_reflection_FOUND)
if(userver_grpc-reflection_FOUND)
return()
endif()

find_package(userver REQUIRED COMPONENTS
core grpc
)

set(userver_grpc_reflection_FOUND TRUE)
set(userver_grpc-reflection_FOUND TRUE)


0 comments on commit 199115f

Please sign in to comment.