summaryrefslogtreecommitdiffstats
path: root/cmake/config.cmake
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-06-08 16:13:17 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-06-08 16:13:17 +0200
commit65fc11a49ec939261ca9a3dbfa534a9c3354825e (patch)
tree411b6dc3bdb13d7f0776426142a3f4d957f74814 /cmake/config.cmake
parent7665159490d533c3c7fbaa1c51c260285a5a361e (diff)
downloadfastd-65fc11a49ec939261ca9a3dbfa534a9c3354825e.tar
fastd-65fc11a49ec939261ca9a3dbfa534a9c3354825e.zip
Add ENABLE_LTO cmake option
Tested with GCC and clang; unlikely to work with other toolchains, so it's disabled by default.
Diffstat (limited to 'cmake/config.cmake')
-rw-r--r--cmake/config.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/config.cmake b/cmake/config.cmake
index e08955e..e77abc8 100644
--- a/cmake/config.cmake
+++ b/cmake/config.cmake
@@ -23,6 +23,8 @@ set(WITH_CAPABILITIES ${LINUX} CACHE BOOL "Include support for POSIX capabilitie
set(ENABLE_LIBSODIUM TRUE CACHE BOOL "Use libsodium instead of NaCl")
set(ENABLE_OPENSSL FALSE CACHE BOOL "Enable crypto implementations using OpenSSL")
+set(ENABLE_LTO FALSE CACHE BOOL "Enable link-time optimization")
+
if(LINUX)
set(ENABLE_SYSTEMD TRUE CACHE BOOL "Enable systemd support")
endif(LINUX)