Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(samples)

add_subdirectory(custom_default_heap)
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/custom_default_heap/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(custom_default_heap C)

add_executable(custom_default_heap
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/erreula/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(erreula CXX)

add_executable(erreula
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/gx2_triangle/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(gx2_triangle C)

add_executable(gx2_triangle
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/helloworld/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(helloworld C)

add_executable(helloworld
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/helloworld_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(helloworld_cpp CXX)

add_executable(helloworld_cpp
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/my_first_rpl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(my_first_rpl C)

add_executable(my_first_rpl my_first_rpl.c)
Expand Down
2 changes: 1 addition & 1 deletion samples/cmake/swkbd/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(swkbd CXX)

add_executable(swkbd
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(tests)

include_directories("test_compile_headers_common")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compile_headers_as_c11/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(test_compile_headers_as_c11 C)

set(CMAKE_C_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compile_headers_as_c99/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(test_compile_headers_as_c99 C)

set(CMAKE_C_STANDARD 99)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compile_headers_as_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.10)
project(test_compile_headers_as_cpp CXX)

add_executable(test_compile_headers_as_cpp
Expand Down