diff options
author | Martin Szulecki | 2010-05-25 10:32:31 +0200 |
---|---|---|
committer | Hector Martin | 2010-05-25 15:20:22 +0200 |
commit | 93819beb8ee272f7e03d9c92ab0e02e1bb24c7c0 (patch) | |
tree | 73ab3885bb23d02ddf5a65eaa580f5b7fc9cb828 /CMakeLists.txt | |
parent | 61751f1934af3eefbf3d6134a2f400af6b8f336c (diff) | |
download | usbmuxd-93819beb8ee272f7e03d9c92ab0e02e1bb24c7c0.tar.gz usbmuxd-93819beb8ee272f7e03d9c92ab0e02e1bb24c7c0.tar.bz2 |
Fix older CMake releases failing to parse rules properly
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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() |