mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 03:25:33 -04:00

NETTLE_FOUND may be used to determine if libnettle should be
linked to other libraries and/or executables.
This fixes a regression from commit 03ce73c612
.
([cmake] CheckNettle2or3.cmake: Convert the macro to a function.)
18 lines
295 B
Bash
Executable File
18 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
add-apt-repository --remove "deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main"
|
|
|
|
apt-get update
|
|
apt-get -y install \
|
|
cmake \
|
|
pkg-config \
|
|
libgmp-dev \
|
|
nettle-dev \
|
|
libudev-dev \
|
|
\
|
|
qtbase5-dev \
|
|
qttools5-dev \
|
|
qttools5-dev-tools \
|
|
libkf5widgetsaddons-dev
|