-
Notifications
You must be signed in to change notification settings - Fork 23
How to clone SLProject
Marcus Hudritsch edited this page Feb 17, 2017
·
7 revisions
The SLProject is hosted at GitHub as a GIT repository. GIT is a distributed versioning control system.
The SLProject contains some GIT submodules. To clone all at once you need to clone recursively. You can clone recursively with the following command in the console:
cd <Path where ever you want the SLProject folder>
git clone --recursive https://github.com/cpvrlab/SLProject.git
cd SLProject
git submodule update --init --recursive
If you download only the zipped project file you won't be able to build the project because the zip file misses the submodules.
If you hate the console you can install the [GitHub Desktop Client] (https://desktop.github.com/) and do the same with some clicks.
For detailed build instructions on various platforms go to the SLProject wiki.