Some tests for the levmar c library. The levmar library is pulled as a git submodule.
git clone --recurse-submodules git@github.com:spetroce/levmar_test.git
or
git clone git@github.com:spetroce/levmar_test.git
cd levmar_test #ie. change to root repo directory
git submodule update --init --recursive
If you do not have a github account setup with an SSH key, replace the URL with https://github.com/spetroce/levmar_test.git. So, the shorthand clone instruction is:
git clone --recurse-submodules https://github.com/spetroce/levmar_test.git
Prerequisite packages to install to perform any building:
Ubuntu:
sudo apt-get install cmake build-essential git-lfs
Fedora:
sudo dnf install make automake cmake gcc gcc-c++ git git-lfs libtool lapack-devel
cd levmar_test
mkdir build
cd build
cmake ..
make