2024-03-10 16:03:15 +01:00
|
|
|
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
|
|
|
|
|
|
|
|
########################################
|
|
|
|
|
2024-05-28 10:12:26 +02:00
|
|
|
add_library(plugin_tox_upnp MODULE
|
2024-03-10 16:03:15 +01:00
|
|
|
./plugin_tox_upnp.cpp
|
|
|
|
)
|
|
|
|
target_compile_features(plugin_tox_upnp PUBLIC cxx_std_17)
|
2024-05-19 11:43:01 +02:00
|
|
|
set_target_properties(plugin_tox_upnp PROPERTIES
|
|
|
|
C_VISIBILITY_PRESET hidden
|
|
|
|
)
|
2024-03-10 16:03:15 +01:00
|
|
|
target_link_libraries(plugin_tox_upnp PUBLIC
|
|
|
|
solanaceae_tox_upnp
|
|
|
|
solanaceae_plugin
|
|
|
|
)
|
|
|
|
|