Fork me on GitHub

Changeset 84d3193 in git


Ignore:
Timestamp:
Feb 16, 2017, 10:02:00 PM (8 years ago)
Author:
Simon Spannagel <simon.spannagel@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
9c2ce8b
Parents:
8e7beb7
Message:

CMake: compare integers instead of strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r8e7beb7 r84d3193  
    1818# the RPATH to be used when installing, but only if it's not a system directory
    1919LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
    20 IF("${isSystemDir}" STREQUAL "-1")
     20IF(${isSystemDir} EQUAL -1)
    2121   SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
    22 ENDIF("${isSystemDir}" STREQUAL "-1")
     22ENDIF(${isSystemDir} EQUAL -1)
    2323
    2424# Declare ROOT dependency
Note: See TracChangeset for help on using the changeset viewer.