forked from Green-Sky/tomato
partial setup
This commit is contained in:
commit
f077a29cf0
18
.gitmodules
vendored
Normal file
18
.gitmodules
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
[submodule "external/solanaceae_toxcore"]
|
||||||
|
path = external/solanaceae_toxcore
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_toxcore.git
|
||||||
|
[submodule "external/solanaceae_util"]
|
||||||
|
path = external/solanaceae_util
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_util.git
|
||||||
|
[submodule "external/solanaceae_contact"]
|
||||||
|
path = external/solanaceae_contact
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_contact.git
|
||||||
|
[submodule "external/solanaceae_message3"]
|
||||||
|
path = external/solanaceae_message3
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_message3.git
|
||||||
|
[submodule "external/solanaceae_tox"]
|
||||||
|
path = external/solanaceae_tox
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_tox.git
|
||||||
|
[submodule "external/solanaceae_plugin"]
|
||||||
|
path = external/solanaceae_plugin
|
||||||
|
url = https://github.com/Green-Sky/solanaceae_plugin.git
|
14
external/CMakeLists.txt
vendored
Normal file
14
external/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
||||||
|
|
||||||
|
add_subdirectory(./entt)
|
||||||
|
|
||||||
|
add_subdirectory(./solanaceae_util)
|
||||||
|
add_subdirectory(./solanaceae_contact)
|
||||||
|
add_subdirectory(./solanaceae_message3)
|
||||||
|
|
||||||
|
add_subdirectory(./solanaceae_plugin)
|
||||||
|
|
||||||
|
add_subdirectory(./toxcore)
|
||||||
|
add_subdirectory(./solanaceae_toxcore)
|
||||||
|
add_subdirectory(./solanaceae_tox)
|
||||||
|
|
4
external/entt/CMakeLists.txt
vendored
Normal file
4
external/entt/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
||||||
|
|
||||||
|
add_subdirectory(./entt EXCLUDE_FROM_ALL)
|
||||||
|
|
1
external/solanaceae_contact
vendored
Submodule
1
external/solanaceae_contact
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 5397fcc5c24ae7d485fe16311c52703e01f5d69c
|
1
external/solanaceae_message3
vendored
Submodule
1
external/solanaceae_message3
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 9d9a3539bdef5cebff166dc25df2379cf99053c0
|
1
external/solanaceae_plugin
vendored
Submodule
1
external/solanaceae_plugin
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 614f14eb0a5af0324cc7940a8550f7572c54033d
|
1
external/solanaceae_tox
vendored
Submodule
1
external/solanaceae_tox
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit b68ef51d641501763b59c7d8d42296c6aa927aaa
|
1
external/solanaceae_toxcore
vendored
Submodule
1
external/solanaceae_toxcore
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 76fbeb9500a54cd20c333432d9b810ab0d353c70
|
1
external/solanaceae_util
vendored
Submodule
1
external/solanaceae_util
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 6f2bc75bfa5e24ccedc9f94581dc9edccb6448f3
|
1
external/toxcore/.gitignore
vendored
Normal file
1
external/toxcore/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
c-toxcore/tox
|
186
external/toxcore/CMakeLists.txt
vendored
Normal file
186
external/toxcore/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
||||||
|
|
||||||
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
||||||
|
|
||||||
|
set(TOX_DIR "${CMAKE_CURRENT_SOURCE_DIR}/c-toxcore/")
|
||||||
|
|
||||||
|
# TODO: shared
|
||||||
|
add_library(toxcore STATIC
|
||||||
|
${TOX_DIR}third_party/cmp/cmp.c
|
||||||
|
${TOX_DIR}third_party/cmp/cmp.h
|
||||||
|
|
||||||
|
${TOX_DIR}toxcore/announce.c
|
||||||
|
${TOX_DIR}toxcore/announce.h
|
||||||
|
${TOX_DIR}toxcore/bin_pack.c
|
||||||
|
${TOX_DIR}toxcore/bin_pack.h
|
||||||
|
${TOX_DIR}toxcore/bin_unpack.c
|
||||||
|
${TOX_DIR}toxcore/bin_unpack.h
|
||||||
|
${TOX_DIR}toxcore/ccompat.c
|
||||||
|
${TOX_DIR}toxcore/ccompat.h
|
||||||
|
${TOX_DIR}toxcore/crypto_core.c
|
||||||
|
${TOX_DIR}toxcore/crypto_core.h
|
||||||
|
${TOX_DIR}toxcore/DHT.c
|
||||||
|
${TOX_DIR}toxcore/DHT.h
|
||||||
|
${TOX_DIR}toxcore/events/conference_connected.c
|
||||||
|
${TOX_DIR}toxcore/events/conference_invite.c
|
||||||
|
${TOX_DIR}toxcore/events/conference_message.c
|
||||||
|
${TOX_DIR}toxcore/events/conference_peer_list_changed.c
|
||||||
|
${TOX_DIR}toxcore/events/conference_peer_name.c
|
||||||
|
${TOX_DIR}toxcore/events/conference_title.c
|
||||||
|
${TOX_DIR}toxcore/events/events_alloc.c
|
||||||
|
${TOX_DIR}toxcore/events/events_alloc.h
|
||||||
|
${TOX_DIR}toxcore/events/file_chunk_request.c
|
||||||
|
${TOX_DIR}toxcore/events/file_recv.c
|
||||||
|
${TOX_DIR}toxcore/events/file_recv_chunk.c
|
||||||
|
${TOX_DIR}toxcore/events/file_recv_control.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_connection_status.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_lossless_packet.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_lossy_packet.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_message.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_name.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_read_receipt.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_request.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_status.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_status_message.c
|
||||||
|
${TOX_DIR}toxcore/events/friend_typing.c
|
||||||
|
${TOX_DIR}toxcore/events/self_connection_status.c
|
||||||
|
${TOX_DIR}toxcore/events/group_custom_packet.c
|
||||||
|
${TOX_DIR}toxcore/events/group_custom_private_packet.c
|
||||||
|
${TOX_DIR}toxcore/events/group_invite.c
|
||||||
|
${TOX_DIR}toxcore/events/group_join_fail.c
|
||||||
|
${TOX_DIR}toxcore/events/group_message.c
|
||||||
|
${TOX_DIR}toxcore/events/group_moderation.c
|
||||||
|
${TOX_DIR}toxcore/events/group_password.c
|
||||||
|
${TOX_DIR}toxcore/events/group_peer_exit.c
|
||||||
|
${TOX_DIR}toxcore/events/group_peer_join.c
|
||||||
|
${TOX_DIR}toxcore/events/group_peer_limit.c
|
||||||
|
${TOX_DIR}toxcore/events/group_peer_name.c
|
||||||
|
${TOX_DIR}toxcore/events/group_peer_status.c
|
||||||
|
${TOX_DIR}toxcore/events/group_privacy_state.c
|
||||||
|
${TOX_DIR}toxcore/events/group_private_message.c
|
||||||
|
${TOX_DIR}toxcore/events/group_self_join.c
|
||||||
|
${TOX_DIR}toxcore/events/group_topic.c
|
||||||
|
${TOX_DIR}toxcore/events/group_topic_lock.c
|
||||||
|
${TOX_DIR}toxcore/events/group_voice_state.c
|
||||||
|
${TOX_DIR}toxcore/forwarding.c
|
||||||
|
${TOX_DIR}toxcore/forwarding.h
|
||||||
|
${TOX_DIR}toxcore/friend_connection.c
|
||||||
|
${TOX_DIR}toxcore/friend_connection.h
|
||||||
|
${TOX_DIR}toxcore/friend_requests.c
|
||||||
|
${TOX_DIR}toxcore/friend_requests.h
|
||||||
|
${TOX_DIR}toxcore/group.c
|
||||||
|
${TOX_DIR}toxcore/group.h
|
||||||
|
${TOX_DIR}toxcore/group_announce.c
|
||||||
|
${TOX_DIR}toxcore/group_announce.h
|
||||||
|
${TOX_DIR}toxcore/group_moderation.c
|
||||||
|
${TOX_DIR}toxcore/group_moderation.h
|
||||||
|
${TOX_DIR}toxcore/group_chats.c
|
||||||
|
${TOX_DIR}toxcore/group_chats.h
|
||||||
|
${TOX_DIR}toxcore/group_common.h
|
||||||
|
${TOX_DIR}toxcore/group_connection.c
|
||||||
|
${TOX_DIR}toxcore/group_connection.h
|
||||||
|
${TOX_DIR}toxcore/group_onion_announce.c
|
||||||
|
${TOX_DIR}toxcore/group_onion_announce.h
|
||||||
|
${TOX_DIR}toxcore/group_pack.c
|
||||||
|
${TOX_DIR}toxcore/group_pack.h
|
||||||
|
${TOX_DIR}toxcore/LAN_discovery.c
|
||||||
|
${TOX_DIR}toxcore/LAN_discovery.h
|
||||||
|
${TOX_DIR}toxcore/list.c
|
||||||
|
${TOX_DIR}toxcore/list.h
|
||||||
|
${TOX_DIR}toxcore/logger.c
|
||||||
|
${TOX_DIR}toxcore/logger.h
|
||||||
|
${TOX_DIR}toxcore/Messenger.c
|
||||||
|
${TOX_DIR}toxcore/Messenger.h
|
||||||
|
${TOX_DIR}toxcore/mono_time.c
|
||||||
|
${TOX_DIR}toxcore/mono_time.h
|
||||||
|
${TOX_DIR}toxcore/net_crypto.c
|
||||||
|
${TOX_DIR}toxcore/net_crypto.h
|
||||||
|
${TOX_DIR}toxcore/network.c
|
||||||
|
${TOX_DIR}toxcore/network.h
|
||||||
|
${TOX_DIR}toxcore/onion_announce.c
|
||||||
|
${TOX_DIR}toxcore/onion_announce.h
|
||||||
|
${TOX_DIR}toxcore/onion.c
|
||||||
|
${TOX_DIR}toxcore/onion_client.c
|
||||||
|
${TOX_DIR}toxcore/onion_client.h
|
||||||
|
${TOX_DIR}toxcore/onion.h
|
||||||
|
${TOX_DIR}toxcore/ping_array.c
|
||||||
|
${TOX_DIR}toxcore/ping_array.h
|
||||||
|
${TOX_DIR}toxcore/ping.c
|
||||||
|
${TOX_DIR}toxcore/ping.h
|
||||||
|
${TOX_DIR}toxcore/shared_key_cache.c
|
||||||
|
${TOX_DIR}toxcore/shared_key_cache.h
|
||||||
|
${TOX_DIR}toxcore/state.c
|
||||||
|
${TOX_DIR}toxcore/state.h
|
||||||
|
${TOX_DIR}toxcore/TCP_client.c
|
||||||
|
${TOX_DIR}toxcore/TCP_client.h
|
||||||
|
${TOX_DIR}toxcore/TCP_common.c
|
||||||
|
${TOX_DIR}toxcore/TCP_common.h
|
||||||
|
${TOX_DIR}toxcore/TCP_connection.c
|
||||||
|
${TOX_DIR}toxcore/TCP_connection.h
|
||||||
|
${TOX_DIR}toxcore/TCP_server.c
|
||||||
|
${TOX_DIR}toxcore/TCP_server.h
|
||||||
|
${TOX_DIR}toxcore/timed_auth.c
|
||||||
|
${TOX_DIR}toxcore/timed_auth.h
|
||||||
|
${TOX_DIR}toxcore/tox_api.c
|
||||||
|
${TOX_DIR}toxcore/tox.c
|
||||||
|
${TOX_DIR}toxcore/tox_dispatch.c
|
||||||
|
${TOX_DIR}toxcore/tox_dispatch.h
|
||||||
|
${TOX_DIR}toxcore/tox_events.c
|
||||||
|
${TOX_DIR}toxcore/tox_events.h
|
||||||
|
${TOX_DIR}toxcore/tox.h
|
||||||
|
${TOX_DIR}toxcore/tox_private.c
|
||||||
|
${TOX_DIR}toxcore/tox_private.h
|
||||||
|
${TOX_DIR}toxcore/tox_unpack.c
|
||||||
|
${TOX_DIR}toxcore/tox_unpack.h
|
||||||
|
${TOX_DIR}toxcore/util.c
|
||||||
|
${TOX_DIR}toxcore/util.h
|
||||||
|
)
|
||||||
|
|
||||||
|
# HACK: "install" api headers into self
|
||||||
|
# this is dirty, should be binary dir
|
||||||
|
# TODO: add the others
|
||||||
|
configure_file(
|
||||||
|
${TOX_DIR}toxcore/tox.h
|
||||||
|
${TOX_DIR}tox/tox.h
|
||||||
|
@ONLY
|
||||||
|
)
|
||||||
|
configure_file(
|
||||||
|
${TOX_DIR}toxcore/tox_events.h
|
||||||
|
${TOX_DIR}tox/tox_events.h
|
||||||
|
@ONLY
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(toxcore PRIVATE "${TOX_DIR}toxcore")
|
||||||
|
target_include_directories(toxcore PUBLIC "${TOX_DIR}")
|
||||||
|
|
||||||
|
target_compile_definitions(toxcore PUBLIC USE_IPV6=1)
|
||||||
|
#target_compile_definitions(toxcore PUBLIC MIN_LOGGER_LEVEL=LOGGER_LEVEL_DEBUG)
|
||||||
|
target_compile_definitions(toxcore PUBLIC MIN_LOGGER_LEVEL=LOGGER_LEVEL_INFO)
|
||||||
|
|
||||||
|
find_package(unofficial-sodium CONFIG QUIET)
|
||||||
|
find_package(sodium QUIET)
|
||||||
|
if(unofficial-sodium_FOUND) # vcpkg
|
||||||
|
target_link_libraries(toxcore unofficial-sodium::sodium unofficial-sodium::sodium_config_public)
|
||||||
|
elseif(sodium_FOUND)
|
||||||
|
target_link_libraries(toxcore sodium)
|
||||||
|
else()
|
||||||
|
message(SEND_ERROR "missing libsodium")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
target_link_libraries(toxcore ws2_32 iphlpapi)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(Threads REQUIRED)
|
||||||
|
target_link_libraries(toxcore Threads::Threads)
|
||||||
|
|
||||||
|
add_executable(DHT_Bootstrap EXCLUDE_FROM_ALL
|
||||||
|
${TOX_DIR}other/DHT_bootstrap.c
|
||||||
|
${TOX_DIR}other/bootstrap_node_packets.h
|
||||||
|
${TOX_DIR}other/bootstrap_node_packets.c
|
||||||
|
${TOX_DIR}testing/misc_tools.h
|
||||||
|
${TOX_DIR}testing/misc_tools.c
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(DHT_Bootstrap toxcore)
|
||||||
|
|
77
res/icon/tomato_v1.svg
Normal file
77
res/icon/tomato_v1.svg
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="256px"
|
||||||
|
height="256px"
|
||||||
|
viewBox="0 0 256 256"
|
||||||
|
version="1.1"
|
||||||
|
id="SVGRoot"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
sodipodi:docname="tomato_v1.svg">
|
||||||
|
<defs
|
||||||
|
id="defs58" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4142136"
|
||||||
|
inkscape:cx="16.266297"
|
||||||
|
inkscape:cy="93.613563"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1043"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="18"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:grid-bbox="true" />
|
||||||
|
<metadata
|
||||||
|
id="metadata61">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<path
|
||||||
|
style="fill:#ff2a2a;stroke:#000000;stroke-width:1.56032121px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 127.88942,76.798435 C 167.31679,60.025418 244.65174,58.890768 245.66678,159.35137 246.68185,259.81197 14.432755,236.53925 12.945249,156.9596 11.457742,77.379952 58.042517,53.121635 119.45855,76.84437 Z"
|
||||||
|
id="path75"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czzcc" />
|
||||||
|
<path
|
||||||
|
style="fill:#d4ff2a;stroke:#000000;stroke-width:1.56032121px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 127.88942,76.798435 c 3.33784,-1.370852 24.83191,-10.986222 39.07856,-20.258885 -14.05799,3.455957 -12.29736,-0.941185 -23.30054,3.725767 4.16028,-3.573745 3.51253,-8.641465 5.764,-13.893176 -8.63398,6.632252 -13.3,3.547387 -14.02952,11.798243 -1.41906,-6.919697 -4.84176,-6.664462 -6.88109,-13.833356 -7.55587,7.036269 -23.10655,28.025132 -9.06228,32.507342 z"
|
||||||
|
id="path85"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<ellipse
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.56032121"
|
||||||
|
id="path89"
|
||||||
|
cx="14.906101"
|
||||||
|
cy="96.961418"
|
||||||
|
rx="11.738252"
|
||||||
|
ry="5.9401131"
|
||||||
|
transform="rotate(-24.743824)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
BIN
res/icon/tomato_v1_256.png
Normal file
BIN
res/icon/tomato_v1_256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
Loading…
Reference in New Issue
Block a user