Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AmigaOS dependencies #22

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ include(External_cli11)
include(External_boost)
include(External_grpc)
include(External_nlohmann_json)

38 changes: 38 additions & 0 deletions install_deps_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash

set -x # echo on
set -e # exit on error

sudo apt-get -qq update

# Please keep this list sorted.
sudo apt-get -y install \
build-essential \
ccache \
clang \
clang-tidy \
cmake \
curl \
gfortran \
libassimp-dev \
libatlas-base-dev \
libavcodec-dev \
libavdevice-dev \
libavformat-dev \
libavutil-dev \
libc++-dev \
libcrypto++-dev \
libegl1-mesa-dev \
libglew-dev \
libgoogle-glog-dev \
libgtest-dev \
libmtdev-dev \
libopencv-dev \
libssl-dev \
libsuitesparse-dev \
libswscale-dev \
libtiff-dev \
libturbojpeg \
python3-dev \
python3.8-venv \
&& sudo apt-get clean
2 changes: 1 addition & 1 deletion scripts/download_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [[ -z "${RELEASE_PLATFORM}" ]]; then
elif [[ "$OSTYPE" == "darwin"* ]]; then
if [[ $(uname -m) == 'arm64' ]]; then
RELEASE_PLATFORM="macos-arm64"
else
else
RELEASE_PLATFORM="macos-11"
fi
else
Expand Down
2 changes: 2 additions & 0 deletions scripts/install_deps_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ sudo apt-get -y install \
libtiff-dev \
python3-dev \
python3.8-venv \
libmtdev-dev \
libturbojpeg \
&& sudo apt-get clean