From: Michal MalĂ˝ Date: Sun, 23 Oct 2016 16:16:59 +0000 (+0200) Subject: Use NOT instead of ! in Windows detection condition X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=3122476d76f439667547c4465350a69c4af60dc6;p=libHPCS.git Use NOT instead of ! in Windows detection condition --- 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 "")