mirror of
https://gitlab.com/niansa/libcrosscoro.git
synced 2025-03-06 20:53:32 +01:00
* Add coro::mutex example to readme * explicit lock_operation ctor * lock_operation await_ready() uses try_lock This allows for the lock operation to skip await_suspend() entirely if the lock was unlocked.
24 lines
No EOL
954 B
CMake
24 lines
No EOL
954 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(libcoro_examples)
|
|
|
|
add_executable(coro_event coro_event.cpp)
|
|
target_compile_features(coro_event PUBLIC cxx_std_20)
|
|
target_link_libraries(coro_event PUBLIC libcoro)
|
|
|
|
add_executable(coro_latch coro_latch.cpp)
|
|
target_compile_features(coro_latch PUBLIC cxx_std_20)
|
|
target_link_libraries(coro_latch PUBLIC libcoro)
|
|
|
|
add_executable(coro_mutex coro_mutex.cpp)
|
|
target_compile_features(coro_mutex PUBLIC cxx_std_20)
|
|
target_link_libraries(coro_mutex PUBLIC libcoro)
|
|
|
|
if(${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
|
|
target_compile_options(coro_event PUBLIC -fcoroutines -Wall -Wextra -pipe)
|
|
target_compile_options(coro_latch PUBLIC -fcoroutines -Wall -Wextra -pipe)
|
|
target_compile_options(coro_mutex PUBLIC -fcoroutines -Wall -Wextra -pipe)
|
|
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
|
|
message(FATAL_ERROR "Clang is currently not supported.")
|
|
else()
|
|
message(FATAL_ERROR "Unsupported compiler.")
|
|
endif() |