From 3122476d76f439667547c4465350a69c4af60dc6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sun, 23 Oct 2016 18:16:59 +0200 Subject: [PATCH] Use NOT instead of ! in Windows detection condition --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b2e1cd..80b108c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ else() add_definitions(-D_HPCS_LITTLE_ENDIAN) endif() -if (!WIN32) +if (NOT WIN32) find_package(ICU 52 REQUIRED COMPONENTS uc io) else() set(ICU_INCLUDE_DIRS "") -- 2.43.5