Include C++ in languages
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
parent
c0a9e41c76
commit
a3171ba7e8
7
C++/scripts/build.sh
Executable file
7
C++/scripts/build.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#Compiles the entire program then runs it, producing an executable.
|
||||
#C
|
||||
printf "Running program...\n\n\n"
|
||||
if g++ $(find . -type f -name "*.cpp") ${CUSTOM_PARAMS} -o ${PROJECT_NAME}; then
|
||||
./${PROJECT_NAME} "$@"
|
||||
fi
|
||||
printf "\n\n"
|
20
C++/scripts/commit.sh
Executable file
20
C++/scripts/commit.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#Adds a commit message and pushes project to github repository.
|
||||
#C
|
||||
COMMIT_MESSAGE="$*"
|
||||
FIRST_LINE=true
|
||||
while IFS= read -r line
|
||||
do
|
||||
if [ "$FIRST_LINE" = true ]; then
|
||||
COMMIT_MESSAGE+="
|
||||
|
||||
Co-authored-by: $line"
|
||||
FIRST_LINE=false
|
||||
else
|
||||
COMMIT_MESSAGE+="
|
||||
Co-authored-by: $line"
|
||||
fi
|
||||
done < utils/.coauthors
|
||||
git add -u
|
||||
git add *
|
||||
git commit -m "$COMMIT_MESSAGE"
|
||||
git push
|
Loading…
x
Reference in New Issue
Block a user