1. 09 Jul, 2020 1 commit
  2. 24 Jun, 2020 1 commit
    • stuartmorgan's avatar
      Consider the Linux template stable (#60163) · d9902a54
      stuartmorgan authored
      Remove the version checking and associated warnings. The Linux template
      and build process will now be subject to more typical Flutter breaking
      change policy, and should no longer require regularly deleting and
      recreating the platform directory.
      d9902a54
  3. 23 Jun, 2020 2 commits
  4. 18 Jun, 2020 2 commits
  5. 16 Jun, 2020 1 commit
    • stuartmorgan's avatar
      Switch Linux to the GTK embedding (#59287) · 61c198e7
      stuartmorgan authored
      Updates the tooling to use the GTK embedding, rather than the GLFW embedding:
      - Adds new requirements to `doctor`
      - Updates the app and plugin templates to make GTK-based runners and plugins
      - Stops downloading and installing the GLFW artifacts
      
      Final part of #54860, other than cleanup.
      61c198e7
  6. 13 Jun, 2020 1 commit
  7. 11 Jun, 2020 1 commit
    • Marcus Tomlinson's avatar
      Remove use of BundleUtilities in Linux build (#59080) · 1fe0f226
      Marcus Tomlinson authored
      * Explicitly install the Flutter library
      
      * Publish ${FLUTTER_LIBRARY} to parent scope
      
      * Bundle plugin libraries
      
      * Bundle <plugin_name>_bundled_libraries too
      
      * BUNDLED_LIBRARIES -> PLUGIN_BUNDLED_LIBRARIES
      
      * Update Linux plugin test
      
      * Address review comments
      1fe0f226
  8. 29 May, 2020 1 commit
  9. 28 May, 2020 1 commit
  10. 27 May, 2020 1 commit
    • stuartmorgan's avatar
      Fix Linux plugin template build visibility (#58069) · 27e652c8
      stuartmorgan authored
      The CMake plugin build wasn't setting visibility to hidden by default,
      which meant that plugins exported everything by default. This would make
      bad interactions between plugins much more likely; only the intended API
      should be exported by the shared library.
      27e652c8
  11. 21 May, 2020 1 commit
  12. 20 May, 2020 1 commit
  13. 18 May, 2020 1 commit
    • stuartmorgan's avatar
      Remove TRANSFORM from Linux CMake files (#57515) · b0751687
      stuartmorgan authored
      The Linux CMakeLists.txt are intended to be compatible with 3.10, but
      accedintally used a list construct that wasn't added until 3.12. This
      adds a custom replacement function.
      
      This makes the build compatible with 3.10 as originally intended.
      b0751687
  14. 16 May, 2020 1 commit
    • stuartmorgan's avatar
      Switch to CMake for Linux desktop (#57238) · 8abf0a6d
      stuartmorgan authored
      Updates the Linux templates to use CMake+ninja, rather than Make, and updates the tooling to generate CMake support files rather than Make support files, and to drive the build using cmake and ninja.
      
      Also updates doctor to check for cmake and ninja in place of make.
      
      Note: While we could use CMake+Make rather than CMake+ninja, in testing ninja handled the tool_backend.sh call much better, calling it only once rather than once per dependent target. While it does add another dependency that people are less likely to already have, it's widely available in package managers, as well as being available as a direct download. Longer term, we could potentially switch from ninja to Make if it's an issue.
      
      Fixes #52751
      8abf0a6d
  15. 10 May, 2020 1 commit
  16. 03 Mar, 2020 1 commit
    • stuartmorgan's avatar
      Add pre-stable support for create on Linux (#51832) · 8d8439f8
      stuartmorgan authored
      Adds initial support for `flutter create` of apps and plugins. This is derived from the current FDE example app and sample plugin, with a few changes:
      - Added template values where it makes sense.
      - Moved some likely-to-change values into separate files for now, to simplify the delete/recreate cycle that will be necessary until it's stable.
      - Added some minor Makefile flag handling improvements
      
      Since the APIs/tooling/template aren't stable yet, the app template includes a version marker, which will be updated each time there's a breaking change. The build now checks that the template version matches the version known by that version of the tool, and gives a specific error message when there's a mismatch, which improves over the current breaking change experience of hitting whatever build failure the breaking change causes and having to figure out that the problem is that the runner is out of date. It also adds a warning to the `create` output about the fact that it won't be stable.
      8d8439f8