From kde-commits Sat Jan 22 15:31:16 2011 From: Patrick von Reth Date: Sat, 22 Jan 2011 15:31:16 +0000 To: kde-commits Subject: [strigi] / Message-Id: <20110122153116.AED2CA60A6 () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=129571032029432 Git commit 8621f8441d53595b124b288bad70eb7884191da8 by Patrick von Reth Pushed by vonreth into branch master disabled strigidaemon for windows, it wont build becasue of use of pipe and other stuff M +3 -1 CMakeLists.txt http://commits.kde.org/3a0142b1/8621f8441d53595b124b288bad70eb7884191da8 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f76b85..427c846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,8 +61,10 @@ else() add_subdirectory(libstreams) add_subdirectory(libstreamanalyzer) add_subdirectory(strigiutils) - if(NOT MSVC) + if(NOT WIN32) add_subdirectory(strigidaemon) + endif(NOT WIN32) + if(NOT MSVC) add_subdirectory(strigiclient) endif(NOT MSVC) endif()