Move the C/C++ example to another directory (#9032)

This commit is contained in:
Pierre Krieger 2018-07-04 12:06:53 +02:00 committed by Andronik Ordian
parent e3e2fcc285
commit 79f754e6ac
4 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -38,7 +38,7 @@ node_modules
# Build artifacts # Build artifacts
out/ out/
parity-clib-example/build/ parity-clib-examples/cpp/build/
.vscode .vscode
rls/ rls/

View File

@ -42,9 +42,9 @@ echo "________Validate chainspecs________"
fi fi
# Running the C example # Running the C++ example
echo "________Running the C example________" echo "________Running the C++ example________"
cd parity-clib-example && \ cd parity-clib-examples/cpp && \
mkdir -p build && \ mkdir -p build && \
cd build && \ cd build && \
cmake .. && \ cmake .. && \
@ -52,7 +52,7 @@ cd parity-clib-example && \
./parity-example && \ ./parity-example && \
cd .. && \ cd .. && \
rm -rf build && \ rm -rf build && \
cd .. cd ../..
# Running tests # Running tests
echo "________Running Parity Full Test Suite________" echo "________Running Parity Full Test Suite________"