Monday, April 29, 2024
Homepage · qt
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 5267  / 2 Years ago, fri, june 17, 2022, 5:40:15

The short version of the question: where is qt5 installed on Ubuntu Studio 22.04?


The long version of the question can be seen unanswered here on the SuperCollider forums: essentially I am trying to build SC from source and am hitting some problem that I think may be related to the location of qt5.


(I should say that I'm not a programmer but do have a basic ability to get around linux in the terminal.)


Thanks


More From » qt

 Answers
6

SuperCollider, build example Ubuntu 22.04

https://github.com/supercollider/supercollider/blob/develop/README_LINUX.md


Basic build requirements :

sudo apt install build-essential git cmake libsndfile1-dev libjack-jackd2-dev libfftw3-dev emacs libudev-dev


Qt5 : no qt5-default, now only available for 20.04 and earlier.

Originally qt5 was (is) optional, therefore no FindQt5.cmake.

sudo apt install qtbase5-dev qt5-qmake qttools5-dev qttools5-dev-tools qtwebengine5-dev libqt5svg5-dev libqt5websockets5-dev


git clone https://github.com/supercollider.git
cd supercollider/
git submodule update --init --recursive
mkdir build
cd build/
cmake -DNATIVE=ON ../
make
.
[100%] Linking CXX executable timetag_test
[100%] Built target timetag_test

[#562] Sunday, June 19, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
elecerna

Total Points: 140
Total Questions: 121
Total Answers: 107

Location: Northern Ireland
Member since Sun, Nov 21, 2021
2 Years ago
;