Skip to content

Commit 6ad68a6

Browse files
committed
build_systems: update all CMakeLists.txt to use 3.10
1 parent 02f4c95 commit 6ad68a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

topics/build_systems/build_systems_exercise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Das `target_include_directories` wird benötigt,
8585
damit der Kompiler weiss, wo er Header-Files suchen muss.
8686

8787
~~~ {.cmake}
88-
cmake_minimum_required(VERSION 3.5)
88+
cmake_minimum_required(VERSION 3.10)
8989
9090
# project settings
9191
project(bit_fields)

topics/build_systems/code/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.10)
22

33
# project settings
44
project(bit_fields)

topics/build_systems/code/CMakeLists_solution.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.10)
22

33
# project settings
44
project(bit_fields)

0 commit comments

Comments
 (0)