2023-12-01 00:24:18 +01:00
|
|
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
|
|
|
|
|
|
|
add_executable(totato
|
|
|
|
./main.cpp
|
2023-12-02 02:55:26 +01:00
|
|
|
|
2023-12-01 02:48:18 +01:00
|
|
|
./tox_client.hpp
|
|
|
|
./tox_client.cpp
|
|
|
|
./tox_private_impl.hpp
|
|
|
|
./auto_dirty.hpp
|
|
|
|
./auto_dirty.cpp
|
2023-12-02 02:55:26 +01:00
|
|
|
|
|
|
|
./message_cleanser.hpp
|
|
|
|
./message_cleanser.cpp
|
2023-12-03 16:01:33 +01:00
|
|
|
|
|
|
|
./message_command_dispatcher.hpp
|
|
|
|
./message_command_dispatcher.cpp
|
2023-12-05 10:41:23 +01:00
|
|
|
|
2023-12-05 19:45:04 +01:00
|
|
|
./managment_commands.hpp
|
|
|
|
./managment_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
|
|
|
)
|
|
|
|
|