cmake_minimum_required(VERSION 3.29)
project(untitled)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-Wall -Wextra -pedantic -fsanitize=address -fsanitize=undefined")

add_executable(archery archery.cpp
        multinomial.cpp
        mod.cpp)
add_executable(book book.cpp)
add_executable(constantine constantine.cpp)
add_executable(ducks ducks.cpp)
add_executable(emigrants emigrants.cpp)
add_executable(grooves grooves.cpp)
add_executable(hussites hussites.cpp)
add_executable(jj jj.cpp)
add_executable(meetings meetings.cpp)
add_executable(ornithology ornithology.cpp)
add_executable(snow snow.cpp)
add_executable(theatre theatre.cpp)
