mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-06 07:47:12 +00:00
55b148a0f7
You can still compile in tree by using --with-libsignal-in-tree flag
11 lines
364 B
CMake
11 lines
364 B
CMake
include(PkgConfigWithFallback)
|
|
find_pkg_config_with_fallback(SignalProtocol
|
|
PKG_CONFIG_NAME libsignal-protocol-c
|
|
LIB_NAMES signal-protocol-c
|
|
INCLUDE_NAMES signal/signal_protocol.h
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(SignalProtocol
|
|
REQUIRED_VARS SignalProtocol_LIBRARY
|
|
VERSION_VAR SignalProtocol_VERSION)
|