about summary refs log tree commit diff homepage
path: root/scripts/build/p-gtest-linux-ubuntu-16.04.inc
blob: f636d32119a12c2762140955137723456e53671b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
install_build_dependencies_gtest() {
  apt update -y

  dependencies=(
    ca-certificates
    wget
    unzip
  )

  #Install essential dependencies
  apt -y --no-install-recommends install "${dependencies[@]}"
}