From: hristov Date: Mon, 15 Dec 2014 21:25:18 +0000 (+0100) Subject: Use STREQUAL for strings X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=0e5d2ccdb5ee78cb9c4c302afb443ceab7b8e26e;p=u%2Fmrichter%2FAliRoot.git Use STREQUAL for strings --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 023ba825646..253f0ed6ec7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,9 +56,9 @@ include(CheckGitVersion) include(CheckCompiler) # Shared library suffix -if (NOT CMAKE_SYSTEM_NAME EQUAL Windows) +if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows) set(CMAKE_SHARED_LIBRARY_SUFFIX .so) -endif (NOT CMAKE_SYSTEM_NAME EQUAL Windows) +endif (NOT CMAKE_SYSTEM_NAME STREQUAL Windows) # ROOT dictionaries and maps include(CMakeALICE)