Skip to content

Commit

Permalink
No need to check for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Andras Fekete committed Aug 12, 2024
1 parent 9f9e890 commit e2d2915
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions doc/generate_documentation.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
# This script depends on g++, cmake, git, and make to be installed

POSIXLY_CORRECT=1

Expand All @@ -8,30 +9,6 @@ GEN_PDF=false
GEN_ALL=false
INSTALL_DOX=false

command -v g++
if [ $? -ne "0" ]; then
echo "Please install g++"
exit 1
fi

command -v cmake
if [ $? -ne "0" ]; then
echo "Please install cmake"
exit 1
fi

command -v git
if [ $? -ne "0" ]; then
echo "Please install git"
exit 1
fi

command -v make
if [ $? -ne "0" ]; then
echo "Please install make"
exit 1
fi

# Checking arguments and setting appropriate option variables

for var in "$@"
Expand Down

0 comments on commit e2d2915

Please sign in to comment.