Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 368 Bytes

File metadata and controls

18 lines (14 loc) · 368 Bytes

file-cpp

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}/)