Home > Net >  Flutter linux build failed
Flutter linux build failed

Time:09-26

I am getting this message, I don't know what it actually mean. Any help would appreciated.

CMake Error at /snap/flutter/126/usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:419 (message):
  A required package was not found
Call Stack (most recent call first):
  /snap/flutter/126/usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:597 (_pkg_check_modules_internal)
  flutter/ephemeral/.plugin_symlinks/desktop_webview_auth/linux/CMakeLists.txt:21 (pkg_check_modules)


Building Linux application...                                           
Exception: Unable to generate build files

CodePudding user response:

The issue is with the desktop_webview_auth the build requires something that the package doesn't have .

you have to open an issue on github to get more information from the developers of the package as there is no info in the error

  • Related