From 93819beb8ee272f7e03d9c92ab0e02e1bb24c7c0 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 25 May 2010 10:32:31 +0200 Subject: Fix older CMake releases failing to parse rules properly --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8eccd2d..7dddfd2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ add_definitions(-Wall) add_subdirectory (libusbmuxd) if (WITH_USBMUXD) add_subdirectory (daemon) - if (NOT(WIN32 OR APPLE)) + if (NOT WIN32 AND NOT APPLE) add_subdirectory (udev) endif() endif() -- cgit v1.1-32-gdbae