Last active
October 15, 2017 18:04
-
-
Save datatypevoid/6f2713e426554a0307b76916ea5b80af to your computer and use it in GitHub Desktop.
Download SLikeNet (version 0.1.0), build from source, install, and clean-up. Tested on Ubuntu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# install-slikenet.sh | |
# Download SLikeNet (version 0.1.0), build from source, install, and | |
# clean-up. | |
# Tested on Ubuntu. | |
# Dependencies: | |
# - build-essential | |
# - cmake | |
# - git | |
# - rm | |
git clone https://github.com/datatypevoid/SLikeNet.git | |
cd ./SLikeNet | |
mkdir build | |
cd ./build | |
cmake ../ | |
make | |
cd ../../ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment