Skip to content

Commit

Permalink
updated install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobaustin123 committed May 22, 2020
1 parent 629edf7 commit 2d5d3d9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions clean-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ fi
rm -rf *
cmake ../../ "${args[@]}"
cmake --build . -- -j12

read -p "Do you want to install Titan globally? [y/N]" -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
sudo make install
sudo chmod 755 /usr/local
fi
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ if [ ! -d "$gtestpath" ]; then
fi

sudo apt-get install -y --no-install-recommends \
libglew-dev libglfw3-dev libglm-dev libgl-dev libgl1-mesa-dev
libglew-dev libglfw3-dev libglm-dev libgl-dev libgl1-mesa-dev cmake

0 comments on commit 2d5d3d9

Please sign in to comment.