This project is a C++ template project with cmake.
The basic requirements for this example is a anaconda enviroment:
Download miniconda from
https://docs.conda.io/en/latest/miniconda.html
chmod +x Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
source activate base
conda install -c anaconda cmake
conda install -c conda-forge gtest
conda install -c conda-forge gmock
conda install -c hi2p-perim fmt
Note for osx:
brew install fmt
./conda/recipes/utecdf/build.sh
run gtest:
./btree-gtest
or
cd /my_project_path/
mkdir build
cd build
cmake ..
make all