add build folder to gitignore, add readme
This commit is contained in:
parent
4db509c041
commit
cb549883ed
2 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -39,3 +39,4 @@ CMakeUserPresets.json
|
|||
|
||||
# CMake files generated by VSCode
|
||||
.cache/*
|
||||
.build/*
|
||||
|
|
|
|||
10
README.md
Normal file
10
README.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
# Simple gRPC demo
|
||||
|
||||
Welcome to this simple gRPC test project.
|
||||
In this repository you will find a minimal example for using gRPC. To keep the footprint low,
|
||||
certain dependencies are expected to already be present on the system you are compiling this on.
|
||||
|
||||
These are:
|
||||
- gRPC itself (be aware of potential consequences of installing gRPC globally; installation through a package manager or into a custom install location are recommended; see root CMakeLists.txt to configure a custom location)
|
||||
- Abseil (required by gRPC)
|
||||
Loading…
Reference in a new issue