about summary refs log tree commit diff homepage
path: root/scripts/build/p-gtest-linux-ubuntu.inc
blob: 15b4f36a84d65d520f7b1576716382fe4b1a91ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
install_build_dependencies_gtest() {
  source "${DIR}/common-functions"
  with_sudo apt update -y

  dependencies=(
    ca-certificates
    wget
    unzip
  )

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