diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-02-13 18:09:43 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-02-13 18:09:43 +0000 |
commit | 0436aa53c30e43fc520d6c2ae03a40ff8752a409 (patch) | |
tree | a319369a7062271673332f72ee69c3551d3431d2 /src/rspamadm | |
parent | aaaa145a865b83e038cb6362bdfbb72b298b895f (diff) | |
download | rspamd-0436aa53c30e43fc520d6c2ae03a40ff8752a409.tar.gz rspamd-0436aa53c30e43fc520d6c2ae03a40ff8752a409.zip |
[Rework] Convert rspamd-server to a shared library
Diffstat (limited to 'src/rspamadm')
-rw-r--r-- | src/rspamadm/CMakeLists.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/rspamadm/CMakeLists.txt b/src/rspamadm/CMakeLists.txt index 2105c16b3..8e3f09435 100644 --- a/src/rspamadm/CMakeLists.txt +++ b/src/rspamadm/CMakeLists.txt @@ -26,18 +26,11 @@ ENDIF() ADD_EXECUTABLE(rspamadm ${RSPAMADMSRC}) TARGET_LINK_LIBRARIES(rspamadm rspamd-server) TARGET_LINK_LIBRARIES(rspamadm ${RSPAMD_REQUIRED_LIBRARIES}) -TARGET_LINK_LIBRARIES(rspamadm rspamd-linenoise) IF (NOT DEBIAN_BUILD) SET_TARGET_PROPERTIES(rspamadm PROPERTIES VERSION ${RSPAMD_VERSION}) ENDIF (NOT DEBIAN_BUILD) -IF (ENABLE_FANN MATCHES "ON") - TARGET_LINK_LIBRARIES(rspamadm fann) -ENDIF () -IF (ENABLE_HYPERSCAN MATCHES "ON") - TARGET_LINK_LIBRARIES(rspamadm hs) -ENDIF () IF(USE_CXX_LINKER) SET_TARGET_PROPERTIES(rspamadm PROPERTIES LINKER_LANGUAGE CXX) ENDIF() |