You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
324 B
15 lines
324 B
#!/bin/bash
|
|
set -ex
|
|
|
|
apt update
|
|
|
|
# Build dependencies
|
|
apt -y install g++ cmake make git
|
|
apt -y install qtbase5-private-dev qtscript5-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev
|
|
|
|
# Optional: Better support for X11
|
|
apt -y install libxfixes-dev libxtst-dev
|
|
|
|
# Optional: CMake can get version from git
|
|
apt -y install git
|