Example #1
0
def download_osvr_core():
    """ Download OSVR Core Repository """
    git = zls.Git()
    git.setRemote(osvr_core_git_root)
    git.setBranchOrTag(osvr_core_git_branch)
    git.setLocal("OSVR-Core")
    git.setRecursive()
    git.clone()
Example #2
0
def download_boost():
    """ Download boost repository """
    git = zls.Git()
    git.setRemote(boost_git_root)
    git.setBranchOrTag(boost_git_branch)
    git.setLocal("Boost")
    git.setRecursive()
    git.clone()
def download_jsoncpp():
    """ Download jsoncpp repository """
    git = zls.Git()
    git.setRemote(jsoncpp_git_root)
    git.setBranchOrTag(jsoncpp_git_branch)
    git.setLocal("jsoncpp")
    git.setRecursive()
    git.clone()
def download_libFunctionality():
    """ Download libFunctionality repository """
    git = zls.Git()
    git.setRemote(libFunctionality_git_root)
    git.setBranchOrTag(libFunctionality_git_branch)
    git.setLocal("libFunctionality")
    git.setRecursive()
    git.clone()
Example #5
0
def download_opencv():
    """ Download OpenCV repository """
    git = zls.Git()
    git.setRemote(opencv_git_root)
    git.setBranchOrTag(opencv_git_branch)
    git.setLocal("OpenCV")
    git.setRecursive()
    git.clone()
def download_dshow_camera():
    """ Download dshow camera """
    git = zls.Git()
    git.setRemote(dshow_git_root)
    git.setLocal("DirectShowCamera")
    git.clone()