Skip to content
Snippets Groups Projects
import.sh 443 B
Newer Older
  • Learn to ignore specific revisions
  • akiraohgaki's avatar
    akiraohgaki committed
    #!/bin/bash
    
    ################################################################################
    # This is utility script to import build dependencies
    ################################################################################
    
    PROJDIR="$(cd "$(dirname "${0}")/../" && pwd)"
    
    if [ ! -d "${PROJDIR}/lib/qtlib" ]; then
        git clone https://github.com/akiraohgaki/qtlib.git -b release-0.1.0 --single-branch --depth=1 "${PROJDIR}/lib/qtlib"
    fi