How can I integrate the OpenSSL wrap file into a Meson build project? #13175
Replies: 1 comment
-
So far after some experiments this is what I came up with, the only issue is that it fails when looking code = files('module.c')
dep_openssl = dependency('openssl', method: 'cmake')
lib = library('fscl-xsecurity-c',
code,
dependencies: dep_openssl,
include_directories: dir)
fscl_xsecurity_c_dep = declare_dependency(
link_with: lib,
dependencies: dep_openssl,
include_directories: dir) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I resolve the issue of OpenSSL library ('libssl') not being found during the Meson build process? I've heard about using a wrap file for OpenSSL in Meson projects, but I'm not sure how to integrate it properly. Could someone provide instructions or guidance on utilizing the OpenSSL wrap file to ensure that the necessary OpenSSL dependencies are correctly managed and linked during the build? Any help in resolving this linking error would be greatly appreciated. Thank you!
The project in question: https://github.com/dreamer-coding-555/fscl-xsecurity-c/tree/main
Beta Was this translation helpful? Give feedback.
All reactions