From f947fa9e264ea99c11c65d8cc6b11dd44b0ec8a2 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Thu, 14 May 2020 23:42:59 +0300 Subject: [PATCH] [cmake] fix OR statement Signed-off-by: R4SAS --- build/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/CMakeLists.txt b/build/CMakeLists.txt index 3e7b1e80..8271ce3a 100644 --- a/build/CMakeLists.txt +++ b/build/CMakeLists.txt @@ -7,7 +7,7 @@ project("i2pd") #set(CMAKE_VERBOSE_MAKEFILE on) # Win32 build with cmake is not supported -if(WIN32 or MSVC or MSYS or MINGW) +if(WIN32 OR MSVC OR MSYS OR MINGW) message(SEND_ERROR "cmake build for windows is not supported. Please use MSYS2 with makefiles in project root.") endif()