Skip to content

Commit 91ad0c1

Browse files
committed
[C++] Increment minimum required CMake version to 3.1.3.
This is the minimum version that supports setting C and C++ standards.
1 parent aaa76d1 commit 91ad0c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# limitations under the License.
1515
#
1616

17-
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
18-
cmake_policy(VERSION 3.0.2)
17+
cmake_minimum_required(VERSION 3.1.3 FATAL_ERROR)
18+
cmake_policy(VERSION 3.1.3)
1919

2020
file(STRINGS version.txt SBE_VERSION_TXT LIMIT_COUNT 1 REGEX "^[0-9]+(\\.[0-9]+)+")
2121
string(REGEX REPLACE "^([0-9]+(\\.[0-9]+)+).*$" "\\1" SBE_VERSION_NUMERIC "${SBE_VERSION_TXT}")

0 commit comments

Comments
 (0)