How to configure “no openssl required” #5528
-
Can openssl as well as the security module be used as configuration items for conditional compilation? |
Beta Was this translation helpful? Give feedback.
Answered by
cferreiragonz
Jan 3, 2025
Replies: 1 comment
-
Yes! OpenSSL is required by the Security Module and TLS. Disabling these two options will allow compilation without OpenSSL, which can be achieved with: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
EugenioCollado
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes! OpenSSL is required by the Security Module and TLS. Disabling these two options will allow compilation without OpenSSL, which can be achieved with:
colcon build --packages-select fastdds --cmake-args -DSECURITY=OFF -DNO_TLS=ON
More info about Fast DDS compilation flags can be found here.