Scripts/build-fast.sh

45 lines
446 B
Bash
Executable File

#!/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 ../..