# mars_parse -- the engine's data-file readers (brace-block format + .effect).
# Header-only consumers include <mars/parse/blocks.h> etc. via the src/ root.
add_library(mars_parse STATIC
    blocks.cpp
    effect.cpp
    value.cpp
)
target_include_directories(mars_parse PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../..)
target_compile_features(mars_parse PUBLIC cxx_std_17)
target_compile_options(mars_parse PRIVATE -Wall -Wextra -Wpedantic)
