diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 22:45:23 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 00:11:46 +0200 |
commit | dc5d951b73c9118511e33b8b07f2e94c41a379e7 (patch) | |
tree | a83b80c4e486a980b6c5065b43fadf32bcc1523e /examples | |
parent | common.cmake: fix a typo (diff) | |
download | cmake-common-dc5d951b73c9118511e33b8b07f2e94c41a379e7.tar.gz cmake-common-dc5d951b73c9118511e33b8b07f2e94c41a379e7.zip |
common.cmake: bump default C++ standard
Diffstat (limited to '')
-rw-r--r-- | examples/boost/CMakeLists.txt | 2 | ||||
-rw-r--r-- | examples/dynamic/CMakeLists.txt | 2 | ||||
-rw-r--r-- | examples/simple/CMakeLists.txt | 2 | ||||
-rw-r--r-- | examples/static/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/boost/CMakeLists.txt b/examples/boost/CMakeLists.txt index c4d5edb..bfb1f68 100644 --- a/examples/boost/CMakeLists.txt +++ b/examples/boost/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets +cmake_minimum_required(VERSION 3.12) project(example_boost) diff --git a/examples/dynamic/CMakeLists.txt b/examples/dynamic/CMakeLists.txt index 190b1c9..d4e0712 100644 --- a/examples/dynamic/CMakeLists.txt +++ b/examples/dynamic/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.12) project(example_dynamic) diff --git a/examples/simple/CMakeLists.txt b/examples/simple/CMakeLists.txt index 268b5db..94810a4 100644 --- a/examples/simple/CMakeLists.txt +++ b/examples/simple/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.12) project(example_simple) diff --git a/examples/static/CMakeLists.txt b/examples/static/CMakeLists.txt index e418aab..c5d77d3 100644 --- a/examples/static/CMakeLists.txt +++ b/examples/static/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.12) project(example_static) |