-
-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathConfigure.Linux.Development.sh
More file actions
28 lines (21 loc) · 813 Bytes
/
Configure.Linux.Development.sh
File metadata and controls
28 lines (21 loc) · 813 Bytes
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
# configure Linux for Nu development
echo Configuring Linux for Nu development...
# configure apt and apt-get
sudo apt update
sudo apt-get update
#configure x11 (this seems to be needed when running just Wayland due to issue #810)
sudo apt-get install libx11-dev
# configure sdl2 and components
sudo apt install \
libsdl2-dev libsdl2-2.0-0 \
libjpeg-dev libwebp-dev libtiff5-dev libsdl2-image-dev libsdl2-image-2.0-0 \
libmikmod-dev libfishsound1-dev libsmpeg-dev liboggz2-dev libflac-dev libfluidsynth-dev libsdl2-mixer-dev libsdl2-mixer-2.0-0 \
libfreetype6-dev libsdl2-ttf-dev libsdl2-ttf-2.0-0
# configure .net
sudo apt-get install -y dotnet-sdk-10.0
# configure assimp
sudo apt-get install libassimp-dev
# configure F#
sudo apt install fsharp
# configure code
sudo snap install code --classic