2023-07-25 14:35:57 +02:00
|
|
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
|
|
|
|
2023-07-25 14:56:22 +02:00
|
|
|
add_executable(tomato
|
|
|
|
main.cpp
|
2023-07-26 01:51:50 +02:00
|
|
|
icon.rc
|
2023-07-26 12:24:18 +02:00
|
|
|
|
|
|
|
screen.hpp
|
|
|
|
start_screen.hpp
|
|
|
|
start_screen.cpp
|
|
|
|
main_screen.hpp
|
|
|
|
main_screen.cpp
|
2023-07-26 12:55:50 +02:00
|
|
|
|
|
|
|
tox_client.hpp
|
|
|
|
tox_client.cpp
|
2023-07-26 20:09:57 +02:00
|
|
|
|
|
|
|
theme.hpp
|
|
|
|
texture_uploader.hpp
|
|
|
|
./sdlrenderer_texture_uploader.hpp
|
|
|
|
./sdlrenderer_texture_uploader.cpp
|
2023-07-25 14:56:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
target_compile_features(tomato PUBLIC cxx_std_17)
|
|
|
|
target_link_libraries(tomato PUBLIC
|
|
|
|
solanaceae_util
|
|
|
|
solanaceae_contact
|
|
|
|
solanaceae_message3
|
|
|
|
|
2023-07-26 12:55:50 +02:00
|
|
|
solanaceae_plugin
|
2023-07-25 14:56:22 +02:00
|
|
|
|
|
|
|
solanaceae_toxcore
|
|
|
|
solanaceae_tox_contacts
|
|
|
|
solanaceae_tox_messages
|
|
|
|
|
2023-07-25 22:47:22 +02:00
|
|
|
SDL3::SDL3
|
|
|
|
|
2023-07-26 01:11:17 +02:00
|
|
|
imgui
|
|
|
|
imgui_backend_sdl3
|
|
|
|
imgui_backend_sdlrenderer3
|
2023-07-25 14:56:22 +02:00
|
|
|
)
|
|
|
|
|