cmake_minimum_required(VERSION 3.15)
project(ft_tokenize LANGUAGES CXX)

find_package(pybind11 REQUIRED)

pybind11_add_module(ft_tokenize src/ft_tokenizer.cpp)
