mirror of
https://github.com/signalapp/libsignal.git
synced 2026-04-26 01:35:22 +02:00
Use a similar strategy as for Node, but with an additional crate that serves as the target for running cbindgen. The expectation is that since iOS links with the native signal_ffi statically, the linker will be able to prune out the unsued test-only code.
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
//
|
|
// Copyright 2020-2021 Signal Messenger, LLC.
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
module SignalFfi {
|
|
header "signal_ffi.h"
|
|
header "signal_ffi_testing.h"
|
|
link "signal_ffi"
|
|
}
|