Module: kamailio Branch: master Commit: 5cf2f4ecde080d6ab1402b9c94bcb33f7b91b8dc URL: https://github.com/kamailio/kamailio/commit/5cf2f4ecde080d6ab1402b9c94bcb33f7b91b8dc
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-01-21T16:55:57+02:00 ims_qos_npn: cmake: Add missing dependencies --- Modified: src/modules/ims_qos_npn/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/5cf2f4ecde080d6ab1402b9c94bcb33f7b91b8dc.diff Patch: https://github.com/kamailio/kamailio/commit/5cf2f4ecde080d6ab1402b9c94bcb33f7b91b8dc.patch --- diff --git a/src/modules/ims_qos_npn/CMakeLists.txt b/src/modules/ims_qos_npn/CMakeLists.txt index 9c8de963961..a9da9cb7eae 100644 --- a/src/modules/ims_qos_npn/CMakeLists.txt +++ b/src/modules/ims_qos_npn/CMakeLists.txt @@ -1,3 +1,11 @@ file(GLOB MODULE_SOURCES "*.c") add_library(${module_name} SHARED ${MODULE_SOURCES}) + +find_package(Threads REQUIRED) +target_link_libraries(${module_name} PRIVATE Threads::Threads) + +find_library(LIBRT rt) +if(LIBRT) + target_link_libraries(${module_name} PRIVATE ${LIBRT}) +endif() _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
