Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 667 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 667 Bytes

Undergraduate Project

Notes on cloning this project

This project has hanjianwei/cmake-modules as its submodule to load CMake modules which are needed to make use of external libraries. So, when you clone this project, you should run one of these operations:

  1. Cloning with --recursive option
$ git clone --recursive https://github.com/kyukyukyu/ugproj-detector.git
  1. Init and update git submodule after cloning
$ git clone https://github.com/kyukyukyu/ugproj-detector.git
$ git submodule init
$ git submodule update

For more information on git submodule, check this out.