Module: kamailio
Branch: master
Commit: 302782dff65469630ced250d65aaa52d0f9dc7fa
URL:
https://github.com/kamailio/kamailio/commit/302782dff65469630ced250d65aaa52…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-12-19T13:13:39+01:00
topos_htable: added CMakeLists.txt
---
Added: src/modules/topos_htable/CMakeLists.txt
---
Diff:
https://github.com/kamailio/kamailio/commit/302782dff65469630ced250d65aaa52…
Patch:
https://github.com/kamailio/kamailio/commit/302782dff65469630ced250d65aaa52…
---
diff --git a/src/modules/topos_htable/CMakeLists.txt
b/src/modules/topos_htable/CMakeLists.txt
new file mode 100644
index 00000000000..75727aabb2d
--- /dev/null
+++ b/src/modules/topos_htable/CMakeLists.txt
@@ -0,0 +1,8 @@
+file(GLOB topos_htable_SRC "*.c")
+
+add_library(topos_htable SHARED ${topos_htable_SRC})
+
+target_compile_options(
+ topos_htable
+ PUBLIC "-ffile-prefix-map=${CMAKE_SOURCE_DIR}/src/modules/topos_htable/=")
+set_target_properties(topos_htable PROPERTIES SUFFIX ".so")