Module: kamailio Branch: master Commit: 302782dff65469630ced250d65aaa52d0f9dc7fa URL: https://github.com/kamailio/kamailio/commit/302782dff65469630ced250d65aaa52d...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@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/302782dff65469630ced250d65aaa52d... Patch: https://github.com/kamailio/kamailio/commit/302782dff65469630ced250d65aaa52d...
---
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")