mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
cmake: minimum required cmake version should be first line in file
See note in https://cmake.org/cmake/help/v3.8/command/project.html
This commit is contained in:
parent
396faebc08
commit
de9f034318
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
PROJECT(fish-shell)
|
|
||||||
CMAKE_MINIMUM_REQUIRED(VERSION 3.1)
|
CMAKE_MINIMUM_REQUIRED(VERSION 3.1)
|
||||||
|
PROJECT(fish-shell)
|
||||||
|
|
||||||
# We are C++11.
|
# We are C++11.
|
||||||
SET(CMAKE_CXX_STANDARD 11)
|
SET(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
Loading…
Reference in a new issue