# mars_text -- flat KEY/value tables, id manifests, commented CSVs.
# Include from the root with add_subdirectory(src/mars/text); link mars_text.
add_library(mars_text STATIC
    value.cpp
    flat_kv.cpp
    manifest.cpp
    csv.cpp
)
target_include_directories(mars_text PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../..)
target_compile_features(mars_text PUBLIC cxx_std_17)
target_compile_options(mars_text PRIVATE -Wall -Wextra)
