Reduce minimal required version of CMake

This commit is contained in:
Serge Lamikhov-Center 2020-08-19 21:41:37 -07:00
parent 5974123dc7
commit a142d45a6c
2 changed files with 4 additions and 3 deletions

View File

@ -9,8 +9,9 @@
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
"intelliSenseMode": "clang-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}
}

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.3)
cmake_minimum_required(VERSION 3.16.3)
project(elfio)
set(CMAKE_CXX_STANDARD 17)