mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
[cmake] use appropriate configure policies where possible
This commit is contained in:
parent
85131452fa
commit
088fc6003b
1 changed files with 8 additions and 0 deletions
|
@ -1,4 +1,12 @@
|
|||
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
|
||||
|
||||
IF(POLICY CMP0066)
|
||||
CMAKE_POLICY(SET CMP0066 OLD)
|
||||
ENDIF()
|
||||
IF(POLICY CMP0067)
|
||||
CMAKE_POLICY(SET CMP0067 OLD)
|
||||
ENDIF()
|
||||
|
||||
PROJECT(fish-shell CXX)
|
||||
|
||||
# We are C++11.
|
||||
|
|
Loading…
Reference in a new issue