A single header file that includes file parsing functions.
To include in your project with cmake:
include(FetchContent)
FetchContent_Declare(
file_cpp
GIT_REPOSITORY https://github.com/Andersama/file-cpp.git
GIT_SHALLOW TRUE
GIT_TAG master
)
FetchContent_MakeAvailable(file_cpp)
include_directories(${file_cpp_SOURCE_DIR}/)