Skip to content

Commit

Permalink
Add a build dependencies script for Linux desktop (flutter#8160)
Browse files Browse the repository at this point in the history
Installs the dependencies necessary to build the Linux desktop shell.
Similar to the existing install-build-deps.sh and
install-build-deps-android.sh but specifically for the desktop shell
requirements.
  • Loading branch information
stuartmorgan authored Mar 19, 2019
1 parent d764b69 commit 1728103
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build/install-build-deps-linux-desktop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Installs the dependencies necessary to build the Linux Flutter shell, beyond
# those installed by install-build-deps.sh.

set -e

sudo apt-get -y install libglfw3-dev libepoxy-dev libjsoncpp-dev libgtk-3-dev \
libx11-dev

0 comments on commit 1728103

Please sign in to comment.