totato/src/CMakeLists.txt

43 lines
711 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
2023-12-01 02:48:18 +01:00
./tox_client.hpp
./tox_client.cpp
./tox_private_impl.hpp
./auto_dirty.hpp
./auto_dirty.cpp
./message_cleanser.hpp
./message_cleanser.cpp
./message_command_dispatcher.hpp
./message_command_dispatcher.cpp
2023-12-05 10:41:23 +01:00
./managment_commands.hpp
./managment_commands.cpp
./config_commands.hpp
./config_commands.cpp
2023-12-05 10:41:23 +01:00
./tox_commands.hpp
./tox_commands.cpp
2023-12-01 00:24:18 +01:00
)
target_compile_features(totato PUBLIC cxx_std_17)
target_link_libraries(totato PUBLIC
2023-12-01 02:48:18 +01:00
solanaceae_util
solanaceae_contact
solanaceae_message3
solanaceae_plugin
solanaceae_toxcore
solanaceae_tox_contacts
solanaceae_tox_messages
2023-12-01 19:26:46 +01:00
nlohmann_json::nlohmann_json
2023-12-01 00:24:18 +01:00
)