From 4f92fe40e8bbe1be32ab41aa74b2720695fb4d19 Mon Sep 17 00:00:00 2001 From: Sandrine Avakian Date: Mon, 20 Jun 2016 14:53:17 +0200 Subject: [PATCH] Disable daemon build on Windows. TODO "fix daemon build on windows. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9e2d1fbe..1cec2f32a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ option(ENABLE_SHARED "Build shared library." YES) option(ENABLE_STATIC "Build static library." YES) option(ENABLE_CONSOLE_UI "Turn on or off compilation of console interface." YES) option(ENABLE_DATE "Use build date in internal version number." NO) -option(ENABLE_DAEMON "Enable the linphone daemon interface." YES) +cmake_dependent_option(ENABLE_DAEMON "Enable the linphone daemon interface." YES "NOT WIN32" NO) option(ENABLE_DOC "Enable documentation generation with Doxygen." YES) option(ENABLE_GTK_UI "Turn on or off compilation of gtk interface." YES) option(ENABLE_LDAP "Enable LDAP support." NO)