File tree Expand file tree Collapse file tree 5 files changed +25
-1
lines changed
Expand file tree Collapse file tree 5 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1- build /*
1+ ** / build /
22* .user
33* .kdev4
44src /sandbox /*
Original file line number Diff line number Diff line change 44[submodule "vcpkg "]
55 path = vcpkg
66 url = https://github.com/microsoft/vcpkg
7+ [submodule "src/microservices/vcpkg "]
8+ path = src/microservices/vcpkg
9+ url = https://github.com/microsoft/vcpkg
Original file line number Diff line number Diff line change 1+ cmake_minimum_required (VERSION 3.16.3)
2+
3+ if (NOT DEFINED CMAKE_TOOLCHAIN_FILE)
4+ set (CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR} /vcpkg/scripts/buildsystems/vcpkg.cmake" CACHE PATH "toolchain file" )
5+ endif ()
6+
7+ message ("toolchain file: ${CMAKE_TOOLCHAIN_FILE} " )
8+ project (microservices)
9+
10+ find_package (gRPC CONFIG REQUIRED)
11+
12+ message ("gRPC_FOUND: " ${gRPC_FOUND} )
13+ message ("gRPC_VERSION: " ${gRPC_VERSION} )
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " microservices" ,
3+ "version-string" : " 1.1.0" ,
4+ "dependencies" : [
5+ { "name" : " grpc" }
6+ ]
7+ }
You can’t perform that action at this time.
0 commit comments