From dd1134f06b174f1829d81b67d7c1a6aeaf8bcc1e Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 19 Dec 2014 10:55:28 +0000 Subject: Compile external tools with optimizations. --- contrib/http-parser/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'contrib/http-parser') diff --git a/contrib/http-parser/CMakeLists.txt b/contrib/http-parser/CMakeLists.txt index ff4687cb0..40b0d55c9 100644 --- a/contrib/http-parser/CMakeLists.txt +++ b/contrib/http-parser/CMakeLists.txt @@ -1,5 +1,8 @@ SET(HTTPSRC http_parser.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(rspamd-http-parser ${LINK_TYPE} ${HTTPSRC}) SET_TARGET_PROPERTIES(rspamd-http-parser PROPERTIES VERSION ${RSPAMD_VERSION}) SET_TARGET_PROPERTIES(rspamd-http-parser PROPERTIES COMPILE_FLAGS "-DRSPAMD_LIB") -- cgit v1.2.3