Skip to content

snandasena/asio-grpc

Repository files navigation

Basic configs and environment setup

Configure Conan and install dependencies

# Create python environment
python -m virtualenv dev
source dev/bin/activate

python -m pip install conan

# Configure Conan 
conan profile detect # default profile
# If you want you can edit the default profile
# Default profile location - ~/.conan2/profiles/default
# Followings are my dev configs
#[settings]
#arch=x86_64
#build_type=Release
#compiler=gcc
#compiler.cppstd=20
#compiler.libcxx=libstdc++11
#compiler.version=13
#os=Linux

# Clone the project and  Install dependencies
git clone https://github.com/snandasena/asio-grpc.git
cd asio-grpc

conan install . --build=missing # Will take couple of minutes

Build and run examples

cd build
cmake ..  -DCMAKE_BUILD_TYPE=Release

cmake --build .

# Find the generated binaries from relevant build folders

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published