added build-fast.sh

This commit is contained in:
Julian Hinxlage 2020-01-09 11:29:48 +01:00
parent 599e40541b
commit feeb994692
1 changed files with 44 additions and 0 deletions

44
build-fast.sh Executable file
View File

@ -0,0 +1,44 @@
#!/usr/bin/env bash
echo 'building all components'
cd ..
#building library first
cd library/build
cmake ..
make library
cd ../..
cd demo/build
cmake ..
make Demo
cd ../..
cd gui/build
cmake ..
make GUI
cd ../..
cd shared-memory/build
cmake ..
make SharedMemory
cd ../..
cd simple-draw/build
cmake ..
make SimpleDraw
cd ../..
cd terminal/build
cmake ..
make Terminal
cd ../..
cd text-renderer/build
cmake ..
make TextRenderer
cd ../..