cmake_minimum_required(VERSION 3.28)
project(dppbots)
message("Setting up 01_01_first_bot")
add_executable(01_01_first_bot "${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp")
target_include_directories(01_01_first_bot PUBLIC
    "${dpp_SOURCE_DIR}/include"
    "${dotenv-cpp_SOURCE_DIR}/include/laserpants"

)
target_link_libraries(01_01_first_bot
    dpp
    dotenv
)
SET_OUTPUT_NAMES(01_01_first_bot)
