From 2e91abed4cd42740b3bc797f5b0132328f509a1e Mon Sep 17 00:00:00 2001 From: Vic Lee Date: Tue, 16 Aug 2011 10:34:15 +0800 Subject: [PATCH] cmake: fix WIN32 variable. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18d575b..15d06ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,7 @@ check_include_files(unistd.h HAVE_UNISTD_H) # Libraries that we have a hard dependency on find_package(OpenSSL REQUIRED) -if(!WINDOWS) +if(NOT WIN32) find_package(ZLIB REQUIRED) find_package(ALSA) find_package(PulseAudio) -- 2.7.4