~ build in release mode

This commit is contained in:
Johannes Theiner 2020-01-09 12:08:20 +01:00
parent feeb994692
commit 583f285d2c
1 changed files with 7 additions and 7 deletions

View File

@ -6,37 +6,37 @@ cd ..
#building library first #building library first
cd library/build cd library/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make library make library
cd ../.. cd ../..
cd demo/build cd demo/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make Demo make Demo
cd ../.. cd ../..
cd gui/build cd gui/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make GUI make GUI
cd ../.. cd ../..
cd shared-memory/build cd shared-memory/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make SharedMemory make SharedMemory
cd ../.. cd ../..
cd simple-draw/build cd simple-draw/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make SimpleDraw make SimpleDraw
cd ../.. cd ../..
cd terminal/build cd terminal/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make Terminal make Terminal
cd ../.. cd ../..
cd text-renderer/build cd text-renderer/build
cmake .. cmake .. -DCMAKE_BUILD_TYPE=Release
make TextRenderer make TextRenderer
cd ../.. cd ../..