include(cmake/dependencies.cmake)

enable_testing()

add_library(test INTERFACE)

target_include_directories(
  test INTERFACE
    ${CMAKE_CURRENT_SOURCE_DIR}/include
)

target_link_libraries(
  test INTERFACE
    artichoke::library
    Catch2::Catch2WithMain
)

include(Catch)

add_subdirectory(Tokenizer)
