should work on hardcoded port (not tested)

This commit is contained in:
2024-03-10 16:03:15 +01:00
commit e8d8e10980
8 changed files with 341 additions and 0 deletions

13
plugins/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
########################################
add_library(plugin_tox_upnp SHARED
./plugin_tox_upnp.cpp
)
target_compile_features(plugin_tox_upnp PUBLIC cxx_std_17)
target_link_libraries(plugin_tox_upnp PUBLIC
solanaceae_tox_upnp
solanaceae_plugin
)