1. 09 Apr, 2021 1 commit
  2. 07 Apr, 2021 1 commit
  3. 06 Apr, 2021 1 commit
  4. 24 Mar, 2021 1 commit
  5. 26 Feb, 2021 1 commit
  6. 18 Feb, 2021 2 commits
  7. 16 Feb, 2021 1 commit
  8. 12 Feb, 2021 1 commit
  9. 08 Feb, 2021 1 commit
  10. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4
  11. 02 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] switch dart defines to base64 to avoid windows control characters (#75027) · 44d5950d
      Jonah Williams authored
      = gets escaped into %3D which seems to be tripping up cmake on windows since % is a control character. Switch to base64 encoding, since this does not have % nor , in the output character set.
      
      This change is not trivially cherry pickable, and isn't tested on windows aside from my local, manual tests due to the planned CI work not being complete yet.
      
      Fixes #75017
      Fixes #74705
      44d5950d
  12. 28 Jan, 2021 1 commit
  13. 27 Jan, 2021 1 commit
  14. 14 Jan, 2021 1 commit
  15. 22 Dec, 2020 1 commit
  16. 21 Dec, 2020 1 commit
  17. 15 Dec, 2020 1 commit
  18. 03 Dec, 2020 2 commits
  19. 26 Oct, 2020 1 commit
  20. 21 Oct, 2020 2 commits
  21. 15 Oct, 2020 1 commit
  22. 12 Oct, 2020 5 commits
  23. 08 Oct, 2020 1 commit
  24. 27 Aug, 2020 1 commit
  25. 06 Jul, 2020 1 commit
    • stuartmorgan's avatar
      Switch Windows to CMake (#60629) · 4b120501
      stuartmorgan authored
      * First pass at CMake files; untested
      
      * First pass of adding CMake generation logic on Windows
      
      * Misc fixes
      
      * Get bundling working, start incoprorating CMake build into tool
      
      * Fix debug, exe name.
      
      * Add resources
      
      * Move cmake.dart
      
      * Rip out all the vcxproj/solution plumbing
      
      * Fix plugin cmake generation
      
      * Build with cmake rather than calling VS directly
      
      * Adjust Windows plugin template to match standard header directory structure
      
      * Pass config selection when building
      
      * Partially fix multi-config handling
      
      * Rev template version
      
      * Share the CMake generation instead of splitting it out
      
      * VS build/run cycle works, with slightly awkward requirement to always build all
      
      * Update manifest
      
      * Plugin template fixes
      
      * Minor adjustments
      
      * Build install as part of build command, instead of separately
      
      * Test cleanup
      
      * Update Linux test for adjusted generated CMake approach
      
      * Plugin test typo fix
      
      * Add missing stub file for project test
      
      * Add a constant for VS generator
      4b120501
  26. 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
  27. 09 Jun, 2020 1 commit
  28. 04 Jun, 2020 1 commit
  29. 29 May, 2020 1 commit
  30. 27 May, 2020 1 commit
  31. 18 May, 2020 1 commit
    • stuartmorgan's avatar
      Fix CMake invocation for 3.10 compat (#57415) · f991308e
      stuartmorgan authored
      The -S/-B format of specifying source and build directories wasn't added
      until 3.13. For 3.10 compatibility, use the older form of having the
      working directory as the build directory, and the last argument as the
      source directory.
      
      Fixes #57409
      f991308e
  32. 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
  33. 06 May, 2020 1 commit