.
├── benchmarks
│ └── squareRoot.bench.cpp
├── build
├── CMakeLists.txt
├── src
│ └── squareRoot.hpp
├── tests
│ └── squareRoot.t.cpp
├── .gitmodules
└── vendor
git submodule init
git submodule update
cd build;
cmake ../ -DWITH_GTEST=ON ;
make -j8;
make test