JanWilczek / audio-plugin-template

A template repository that you can use for creating audio plugins with the JUCE C++ framework. It is based on CMake, uses CPM package manager, the JUCE C++ framework (obviously), and the GoogleTest framework. All of these are easy to change on demand. You can also base off your new repo off this template because the setup is very simple.
The Unlicense
95 stars 7 forks source link

Difficulty installing the project on Ubuntu 24.04 #8

Closed filipeborato closed 2 months ago

filipeborato commented 3 months ago

Good contribution. I made the installation in the crude system and I have some problems.

image

The first problem I resolved by installing this package:

sudo apt-get install pkg-config

There were other libraries I needed to get:

sudo apt install libx11-dev && sudo apt install libxrandr-dev &&  sudo apt-get install libxinerama-dev && sudo apt install libxcursor-dev && sudo apt-get install libfontconfig1-dev

After that, I realized that I hadn't installed the Alsa library: image

I fix the problem with two commands:

sudo apt-get -y install alsa-base
sudo apt-get install libasound2-dev

And it worked:

image

JanWilczek commented 3 months ago

JUCE provides a full list of Linux dependencies here: https://github.com/juce-framework/JUCE/blob/master/docs/Linux%20Dependencies.md