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
out/
parity-clib-example/build/
parity-clib-examples/cpp/build/
.vscode
rls/

View File

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