mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-14 19:35:00 +00:00
148cf48d2b
Add libnice as a plugin. If it is present, use libnice to enumerate local IP addresses and listen on them to support direct connections for Jingle SOCKS5. Tested with Conversations and Gajim. Created the nice.vapi file using ``` vapigen --library nice --pkg gio-2.0 --metadatadir metadata /usr/share/gir-1.0/Nice-0.1.gir ```
22 lines
602 B
CMake
22 lines
602 B
CMake
if(DINO_PLUGIN_ENABLED_http-files)
|
|
add_subdirectory(http-files)
|
|
endif(DINO_PLUGIN_ENABLED_http-files)
|
|
|
|
if(DINO_PLUGIN_ENABLED_ice)
|
|
add_subdirectory(ice)
|
|
endif(DINO_PLUGIN_ENABLED_ice)
|
|
|
|
if(DINO_PLUGIN_ENABLED_openpgp)
|
|
add_subdirectory(gpgme-vala)
|
|
add_subdirectory(openpgp)
|
|
endif(DINO_PLUGIN_ENABLED_openpgp)
|
|
|
|
if(DINO_PLUGIN_ENABLED_omemo)
|
|
add_subdirectory(crypto-vala)
|
|
add_subdirectory(omemo)
|
|
add_subdirectory(signal-protocol)
|
|
endif(DINO_PLUGIN_ENABLED_omemo)
|
|
|
|
if(DINO_PLUGIN_ENABLED_notification-sound)
|
|
add_subdirectory(notification-sound)
|
|
endif(DINO_PLUGIN_ENABLED_notification-sound)
|