forked from mirror/capnproto
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1023 B
Bash
27 lines
1023 B
Bash
#! /usr/bin/env bash
|
|
#
|
|
# Quick script that compiles and runs the samples, then cleans up.
|
|
# Used for release testing.
|
|
|
|
set -exuo pipefail
|
|
|
|
capnpc -oc++ addressbook.capnp
|
|
c++ -std=c++14 -Wall addressbook.c++ addressbook.capnp.c++ \
|
|
$(pkg-config --cflags --libs capnp) -o addressbook
|
|
./addressbook write | ./addressbook read
|
|
./addressbook dwrite | ./addressbook dread
|
|
rm addressbook addressbook.capnp.c++ addressbook.capnp.h
|
|
|
|
capnpc -oc++ calculator.capnp
|
|
c++ -std=c++14 -Wall calculator-client.c++ calculator.capnp.c++ \
|
|
$(pkg-config --cflags --libs capnp-rpc) -o calculator-client
|
|
c++ -std=c++14 -Wall calculator-server.c++ calculator.capnp.c++ \
|
|
$(pkg-config --cflags --libs capnp-rpc) -o calculator-server
|
|
rm -f /tmp/capnp-calculator-example-$$
|
|
./calculator-server unix:/tmp/capnp-calculator-example-$$ &
|
|
sleep 0.1
|
|
./calculator-client unix:/tmp/capnp-calculator-example-$$
|
|
kill %+
|
|
wait %+ || true
|
|
rm calculator-client calculator-server calculator.capnp.c++ calculator.capnp.h /tmp/capnp-calculator-example-$$
|