totato/src/CMakeLists.txt

12 lines
184 B
CMake
Raw Normal View History

2023-12-01 00:24:18 +01:00
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
add_executable(totato
./main.cpp
)
target_compile_features(totato PUBLIC cxx_std_17)
target_link_libraries(totato PUBLIC
toxcore
)