From 91d61843f222602dab24fbf5d0f751d29fdf085d Mon Sep 17 00:00:00 2001 From: LAGonauta Date: Fri, 26 Mar 2021 08:11:16 -0300 Subject: [PATCH] No need to enable coroutines --- plugins/windows-notification/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/windows-notification/CMakeLists.txt b/plugins/windows-notification/CMakeLists.txt index 55b99b73..41fcc722 100644 --- a/plugins/windows-notification/CMakeLists.txt +++ b/plugins/windows-notification/CMakeLists.txt @@ -69,7 +69,7 @@ endif(NOT mincore_LIBRARY) target_link_libraries(windows-notification libdino ${shlwapi_LIBRARY} ${propsys_LIBRARY} ${ntdll_LIBRARY} ${mincore_LIBRARY} ${WINDOWS_NOTIFICATION_PACKAGES}) target_compile_features(windows-notification PRIVATE cxx_std_20) target_compile_definitions(windows-notification PRIVATE WINRT_GLIB_H_INSIDE) -target_compile_options(windows-notification PRIVATE -municode $<$:-fcoroutines -iquote ${PROJECT_SOURCE_DIR}/yolort/include/winrt/yolort_impl>) +target_compile_options(windows-notification PRIVATE -municode $<$:-iquote ${PROJECT_SOURCE_DIR}/yolort/include/winrt/yolort_impl>) set_target_properties(windows-notification PROPERTIES PREFIX "") set_target_properties(windows-notification PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/plugins/)