Skip to content

Commit 2bc3672

Browse files
committed
🎨 cmake-format and update readme
1 parent 715e318 commit 2bc3672

2 files changed

Lines changed: 17 additions & 13 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ if(ASYNCPP_BUILD_TEST)
7777
if(ASYNCPP_WITH_ASAN)
7878
message(STATUS "Building with asan enabled")
7979
target_compile_options(asyncpp_uring-test PRIVATE -fsanitize=address)
80-
target_link_libraries(asyncpp_uring-test PRIVATE -fsanitize=address)
80+
target_link_libraries(asyncpp_uring-test PRIVATE -fsanitize=address)
8181
endif()
8282
target_compile_options(asyncpp_uring-test PRIVATE -Werror)
8383

@@ -101,10 +101,10 @@ if(ASYNCPP_BUILD_EXAMPLES)
101101

102102
if(ASYNCPP_WITH_ASAN)
103103
target_compile_options(uring-info PRIVATE -fsanitize=address)
104-
target_link_libraries(uring-info PRIVATE -fsanitize=address)
104+
target_link_libraries(uring-info PRIVATE -fsanitize=address)
105105
target_compile_options(echo-server PRIVATE -fsanitize=address)
106-
target_link_libraries(echo-server PRIVATE -fsanitize=address)
106+
target_link_libraries(echo-server PRIVATE -fsanitize=address)
107107
target_compile_options(echo-client PRIVATE -fsanitize=address)
108-
target_link_libraries(echo-client PRIVATE -fsanitize=address)
108+
target_link_libraries(echo-client PRIVATE -fsanitize=address)
109109
endif()
110110
endif()

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,25 @@ This library provides a c++20 coroutine wrapper around the modern linux io_uring
33
It is an addition to [async++](https://github.com/asyncpp/asyncpp) which provides general coroutine tasks and support classes.
44

55
Tested and supported compilers:
6-
[![ubuntu-2004_clang-10][img_ubuntu-2004_clang-10]][Compiler-Support]
7-
[![ubuntu-2004_clang-11][img_ubuntu-2004_clang-11]][Compiler-Support]
8-
[![ubuntu-2004_clang-12][img_ubuntu-2004_clang-12]][Compiler-Support]
9-
[![ubuntu-2004_gcc-10][img_ubuntu-2004_gcc-10]][Compiler-Support]
6+
[![ubuntu-2404_clang-16][img_ubuntu-2404_clang-16]][Compiler-Support]
7+
[![ubuntu-2404_clang-17][img_ubuntu-2404_clang-17]][Compiler-Support]
8+
[![ubuntu-2404_clang-18][img_ubuntu-2404_clang-18]][Compiler-Support]
9+
[![ubuntu-2404_gcc-12][img_ubuntu-2404_gcc-12]][Compiler-Support]
10+
[![ubuntu-2404_gcc-13][img_ubuntu-2404_gcc-13]][Compiler-Support]
11+
[![ubuntu-2404_gcc-14][img_ubuntu-2404_gcc-14]][Compiler-Support]
1012
[![ubuntu-2204_clang-13][img_ubuntu-2204_clang-13]][Compiler-Support]
1113
[![ubuntu-2204_clang-14][img_ubuntu-2204_clang-14]][Compiler-Support]
1214
[![ubuntu-2204_clang-15][img_ubuntu-2204_clang-15]][Compiler-Support]
13-
[![ubuntu-2204_gcc-11][img_ubuntu-2204_gcc-11]][Compiler-Support]
1415
[![ubuntu-2204_gcc-10][img_ubuntu-2204_gcc-10]][Compiler-Support]
16+
[![ubuntu-2204_gcc-11][img_ubuntu-2204_gcc-11]][Compiler-Support]
1517

1618

17-
[img_ubuntu-2004_clang-10]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2004_clang-10/shields.json
18-
[img_ubuntu-2004_clang-11]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2004_clang-11/shields.json
19-
[img_ubuntu-2004_clang-12]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2004_clang-12/shields.json
20-
[img_ubuntu-2004_gcc-10]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2004_gcc-10/shields.json
19+
[img_ubuntu-2404_clang-16]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_clang-16/shields.json
20+
[img_ubuntu-2404_clang-17]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_clang-17/shields.json
21+
[img_ubuntu-2404_clang-18]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_clang-18/shields.json
22+
[img_ubuntu-2404_gcc-12]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_gcc-12/shields.json
23+
[img_ubuntu-2404_gcc-13]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_gcc-13/shields.json
24+
[img_ubuntu-2404_gcc-14]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2404_gcc-14/shields.json
2125
[img_ubuntu-2204_clang-13]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2204_clang-13/shields.json
2226
[img_ubuntu-2204_clang-14]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2204_clang-14/shields.json
2327
[img_ubuntu-2204_clang-15]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/asyncpp/asyncpp-uring/badges/compiler/ubuntu-2204_clang-15/shields.json

0 commit comments

Comments
 (0)