natsuk4ze / gal

How to Save Image or Video to Photo Gallery in Flutter
https://pub.dev/packages/gal
BSD 3-Clause "New" or "Revised" License
85 stars 13 forks source link

Support windows #148

Closed natsuk4ze closed 10 months ago

natsuk4ze commented 10 months ago
natsuk4ze commented 10 months ago

NOTE:

I decided to set up a c++ 20 environment to use IAsyncAction and co_await.

In CMakeList.txt

set(CMAKE_CXX_STANDARD 20)

and,

if(MSVC)
  target_compile_options(${PLUGIN_NAME} PRIVATE /await)
endif()

settings were required.

*No additional configuration is required for package users.

microsoft/PowerToys#6856