Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 97ff8fa8 authored by Thomas PRAMPART's avatar Thomas PRAMPART
Browse files

Added dependencies install support for ubuntu 1910

parent 9eb149e6
No related branches found
No related tags found
1 merge request!153Resolve "Feature: Add ubuntu1910 support"
doxygen
make
cmake
gcc
g++
libexpat1-dev
libncurses5-dev
libboost-dev
libboost-thread-dev
libboost-regex-dev
libboost-chrono-dev
libboost-filesystem-dev
ninja-build
libzzip-dev
libxerces-c-dev
libgtest-dev
......@@ -101,6 +101,8 @@ if ($lsb_distributor =~ 'Ubuntu') {
$distribution = 'Ubuntu 14.04';
} elsif ($lsb_release =~ '16.04') {
$distribution = 'Ubuntu 16.04';
} elsif ($lsb_release =~ '19.10') {
$distribution = 'Ubuntu 19.10';
}
}
......@@ -130,6 +132,8 @@ if ($distribution eq 'Ubuntu 14.04') {
$pkg_file = "$manifest_dir/linux-dependencies-ubuntu1404.txt";
} elsif ($distribution eq 'Ubuntu 16.04') {
$pkg_file = "$manifest_dir/linux-dependencies-ubuntu1604.txt";
} elsif ($distribution eq 'Ubuntu 19.10') {
$pkg_file = "$manifest_dir/linux-dependencies-ubuntu1910.txt";
} else {
die("Unknown distro\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment