Module: kamailio Branch: master Commit: 983f8cdc8af95b7bfb7d443c58427b8cff733003 URL: https://github.com/kamailio/kamailio/commit/983f8cdc8af95b7bfb7d443c58427b8cff733003
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-01-21T16:55:57+02:00 misctest: cmake: Add missing dependencies --- Modified: src/modules/misctest/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/983f8cdc8af95b7bfb7d443c58427b8cff733003.diff Patch: https://github.com/kamailio/kamailio/commit/983f8cdc8af95b7bfb7d443c58427b8cff733003.patch --- diff --git a/src/modules/misctest/CMakeLists.txt b/src/modules/misctest/CMakeLists.txt index 9c8de963961..3fae3f5eae8 100644 --- a/src/modules/misctest/CMakeLists.txt +++ b/src/modules/misctest/CMakeLists.txt @@ -1,3 +1,6 @@ file(GLOB MODULE_SOURCES "*.c") add_library(${module_name} SHARED ${MODULE_SOURCES}) + +find_package(Threads REQUIRED) +target_link_libraries(${module_name} PRIVATE Threads::Threads) _______________________________________________ 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!
