summaryrefslogtreecommitdiffstats
path: root/contrib/libottery
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2014-12-19 10:55:28 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2014-12-19 10:55:28 +0000
commitdd1134f06b174f1829d81b67d7c1a6aeaf8bcc1e (patch)
treee5483eda2482a320ad834bad246fd7e0759c308d /contrib/libottery
parenta13bc71723ef269d7dcee56416a5f42cd8ee8a72 (diff)
downloadrspamd-dd1134f06b174f1829d81b67d7c1a6aeaf8bcc1e.tar.gz
rspamd-dd1134f06b174f1829d81b67d7c1a6aeaf8bcc1e.zip
Compile external tools with optimizations.
Diffstat (limited to 'contrib/libottery')
-rw-r--r--contrib/libottery/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/libottery/CMakeLists.txt b/contrib/libottery/CMakeLists.txt
index 52667ff84..0483c49f3 100644
--- a/contrib/libottery/CMakeLists.txt
+++ b/contrib/libottery/CMakeLists.txt
@@ -3,5 +3,7 @@ SET(OTTERYSRC chacha_merged.c
ottery_cpuinfo.c
ottery_entropy.c
ottery_global.c)
-
+if ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3")
+endif ()
ADD_LIBRARY(ottery STATIC ${OTTERYSRC}) \ No newline at end of file