noise-suppression-for-voice icon indicating copy to clipboard operation
noise-suppression-for-voice copied to clipboard

Error at -- Building juceaide

Open adamshumpisxxx opened this issue 1 year ago • 1 comments

https://pastebin.com/EqXAERMc

Obviously then can't continue to execute "ninja -C build-x64".

Linux Mint 21 Vanessa

adamshumpisxxx avatar Aug 20 '22 18:08 adamshumpisxxx

You are missing dependencies:

-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.2") 
-- Checking for module 'alsa'
--   No package 'alsa' found
-- Checking for module 'freetype2'
--   No package 'freetype2' found
-- Checking for module 'libcurl'
--   No package 'libcurl' found
-- Checking for modules 'webkit2gtk-4.0;gtk+-x11-3.0'
--   No package 'webkit2gtk-4.0' found
--   No package 'gtk+-x11-3.0' found
-- Configuring juceaide

So you probably need to install:

sudo apt install libasound2-dev libjack-jackd2-dev \
    libcurl4-openssl-dev  \
    libfreetype6-dev \
    libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \
    libwebkit2gtk-4.0-dev

werman avatar Aug 20 '22 18:08 werman