aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/lc-btrie
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-12-25 16:23:02 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-12-25 16:23:02 +0000
commit6eecb5ce7c89b5d203b175445b338a9ddd3a1368 (patch)
tree77dffc7d2e7e9a97cc6ae514e5a0fd9e4aaf6388 /contrib/lc-btrie
parentde8ca5b3ac969491416a064840f963622fd3d59c (diff)
downloadrspamd-6eecb5ce7c89b5d203b175445b338a9ddd3a1368.tar.gz
rspamd-6eecb5ce7c89b5d203b175445b338a9ddd3a1368.zip
[Minor] Add enable full debug option
Diffstat (limited to 'contrib/lc-btrie')
-rw-r--r--contrib/lc-btrie/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/lc-btrie/CMakeLists.txt b/contrib/lc-btrie/CMakeLists.txt
index 7ae9ce063..b520bda86 100644
--- a/contrib/lc-btrie/CMakeLists.txt
+++ b/contrib/lc-btrie/CMakeLists.txt
@@ -2,7 +2,10 @@ SET(LCTRIESRC btrie.c)
ADD_LIBRARY(lcbtrie STATIC ${LCTRIESRC})
SET(LCTRIE_CFLAGS "-DBUILD_RSPAMD")
+IF(ENABLE_FULL_DEBUG MATCHES "OFF")
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
SET(LCTRIE_CFLAGS "${LCTRIE_CFLAGS} -O3")
endif ()
+ENDIF()
+
set_target_properties(lcbtrie PROPERTIES COMPILE_FLAGS "${LCTRIE_CFLAGS}") \ No newline at end of file