generated from cpp-best-practices/cmake_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_examples.sh
42 lines (32 loc) · 1.3 KB
/
build_examples.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env bash
# This script is intended to be run from an Ubuntu Docker image (or other Debian-derived distros).
# It uses `apt-get` to install dependencies required by the examples,
set -euo pipefail
function install_fltk() {
apt-get install -y --no-install-recommends libfltk1.3-dev libgl1-mesa-dev fluid
}
function install_gtkmm() {
apt-get install -y --no-install-recommends pkg-config libgtkmm-3.0-dev
}
function install_imgui() {
apt-get install -y --no-install-recommends pkg-config libgl1-mesa-dev
}
function install_nana() {
# CMakeLists.txt is 'supposed' to install all of these automatically, but for
# some reason it doesn't always work. Installing them manually does work.
apt-get install -y --no-install-recommends libjpeg8-dev libpng-dev \
libasound2-dev alsa-utils alsa-oss libx11-dev libxft-dev libxcursor-dev
# Note: Nana's headers trigger the -Wshadow warning, and cannot be compiled with -Werror.
# Supposedly, this is fixed in the develop-1.8 branch, but I cannot confirm.
}
function install_qt() {
apt-get install -y --no-install-recommends qt5-default qtbase5-dev
}
function install_sdl() {
pip install mako
}
# call the above functions to install the required dependencies. As an example for qt:
# install_qt
# build with:
cmake -S . -B "./build"
cmake --build "./build"