forked from David-Haim/concurrencpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relaxed CMake version requirement further, to 3.16.
- Loading branch information
Showing
15 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |