first docker

This commit is contained in:
root
2021-06-04 05:24:13 +00:00
parent 8cc5ebf832
commit 8c2282a6fb
84 changed files with 1486 additions and 19657 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/sh
#Removing build folder of home directory to overcome overwriting issue
if [ -d ~/"build/" ]; then
rm -rf ~/build/
fi
#Removing build folder of the project directory
if [ -d "build/" ]; then
rm -rf build/
fi
mkdir build #build folder will be created and project will be build in that folder. If you want to make a folder with different name, then just change it.
cd build #Name of the folder
#Building commands
#cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" ../
#cmake --build . --target BaggageAIApi -- -j4
#Running DemoApp application
cd ..
build/baggageAPI