FetchContent_Declare(
  argos
  GIT_REPOSITORY "https://github.com/jebreimo/Argos.git"
  GIT_TAG "v1.1.269"
)
FetchContent_MakeAvailable(argos)
get_target_property(argos-sources
    Argos::Argos
    SOURCES
)
list(TRANSFORM argos-sources
    PREPEND ${argos_SOURCE_DIR}/
)
add_library(argos-static
    STATIC
    ${argos-sources}
)
target_include_directories(argos-static
    PUBLIC
    ${argos_SOURCE_DIR}/include
    ${argos_BINARY_DIR}
)

add_subdirectory(model-conf)
