Skip to content

Commit

Permalink
refs #3382 fixed case sensitive cmake policy cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnich committed Aug 17, 2019
1 parent 8ac3981 commit 61bc4de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
@@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 2.8.12)

# support <pkg>_ROOT in find_package
if (policy CMP0074)
if (POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
# enable RPATH in macos bins (OS requires this in any case)
if (policy CMP0042)
if (POLICY CMP0042)
cmake_policy(SET CMP0042 NEW)
endif()

Expand Down

0 comments on commit 61bc4de

Please sign in to comment.