- C++ STL(Standard Template Library)
https://cplusplus.com/reference/stl/ - Git
https://git-scm.com/ - Cmake
https://cmake.org/ - Conan
https://docs.conan.io/en/latest/ - GoogleTest
https://google.github.io/googletest/
$ pip install conan$ conan install conanfile.txt -of build$ cmake -S . -B build/ -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
or
$ cmake -S . -B build/ --preset=conan-release$ source build/conanbuild.sh$ cmake --build build/$ source build/conanrun.sh$ cmake --build build/ --target test$ cmake --install build/ --prefix "build/"