There are scarce tutorials on using individual Boost libraries on Linux specifically and also using individual libraries pulled from GitHub. I want to use the program_options library within boost to pass simple arguments though instead of downloading the entire boost library I would only like to use that specific library pulled from boost's GitHub. Is this possible?
Directory Structure:
.
├── build
│ ├── CMakeCache.txt
│ ├── CMakeFiles
│ ├── cmake_install.cmake
│ ├── lib
│ └── Makefile
├── CMakeLists.txt
├── lib
│ └── program_options
└── main.cpp
I am getting an error saying that there is no CMakeLists.txt in libs/ which makes sense. How can I utilise that program_options github repo from CMake?