Skip to content

Commit

Permalink
Relaxed CMake version requirement further, to 3.16.
Browse files Browse the repository at this point in the history
  • Loading branch information
PazerOP committed Sep 21, 2020
1 parent d99358a commit d81c813
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(concurrencpp)

set(CMAKE_CXX_STANDARD 20)
Expand Down
2 changes: 1 addition & 1 deletion concurrencpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(concurrencpp)

add_library(
Expand Down
2 changes: 1 addition & 1 deletion examples/async_file_processing/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(async_file_processing)

add_executable(
Expand Down
2 changes: 1 addition & 1 deletion examples/async_sql/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(async_sql)

add_executable(
Expand Down
2 changes: 1 addition & 1 deletion examples/process_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(process_monitor)

add_executable(
Expand Down
2 changes: 1 addition & 1 deletion examples/synchronous_web_socket/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(synchronous_web_socket)

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

add_executable(
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.17.0)
cmake_minimum_required(VERSION 3.16)
project(tests)

add_executable(
Expand Down
4 changes: 2 additions & 2 deletions thread_sanitizers/executors/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(executor_test)

add_executable(
executor_test
main.cpp
)

target_link_libraries(executor_test concurrencpp)
target_link_libraries(executor_test concurrencpp)
4 changes: 2 additions & 2 deletions thread_sanitizers/fibbonacci/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(fibbonacci_test)

add_executable(
fibbonacci_test
main.cpp
)

target_link_libraries(fibbonacci_test concurrencpp)
target_link_libraries(fibbonacci_test concurrencpp)
2 changes: 1 addition & 1 deletion thread_sanitizers/matrix_multiplication/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(matrix_multiplication_test)

add_executable(
Expand Down
4 changes: 2 additions & 2 deletions thread_sanitizers/quick_sort/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(quick_sort_test)

add_executable(
quick_sort_test
main.cpp
)

target_link_libraries(quick_sort_test concurrencpp)
target_link_libraries(quick_sort_test concurrencpp)
4 changes: 2 additions & 2 deletions thread_sanitizers/result/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(result_test)

add_executable(
result_test
main.cpp
)

target_link_libraries(result_test concurrencpp)
target_link_libraries(result_test concurrencpp)
4 changes: 2 additions & 2 deletions thread_sanitizers/when_all/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(when_all_test)

add_executable(
when_all_test
main.cpp
)

target_link_libraries(when_all_test concurrencpp)
target_link_libraries(when_all_test concurrencpp)
4 changes: 2 additions & 2 deletions thread_sanitizers/when_any/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.17.0)
cmake_minimum_required(VERSION 3.16)
project(when_any_test)

add_executable(
when_any_test
main.cpp
)

target_link_libraries(when_any_test concurrencpp)
target_link_libraries(when_any_test concurrencpp)

0 comments on commit d81c813

Please sign in to comment.