Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TPF
jacktrip
Commits
b5943ea5
Unverified
Commit
b5943ea5
authored
Aug 01, 2020
by
ntonnaett
Committed by
GitHub
Aug 01, 2020
Browse files
Merge pull request #108 from driechers/qt5_dependency_in_build
Set QT5 dependency in build script
parents
967439d0
6b322b49
Changes
3
Hide whitespace changes
Inline
Side-by-side
INSTALL.txt
View file @
b5943ea5
...
...
@@ -32,10 +32,10 @@ To build using QtCreator (tested using QtCreator 4.11 and macOS 10.13.6):
---
Fedora installation (also tested on Ubuntu Studio):
To install on Fedora (and possibly other Linux distributions), you need qt5, jack-audio-connection-kit-devel, and rtaudio.
To install on Fedora (and possibly other Linux distributions), you need qt5,
qtchooser,
jack-audio-connection-kit-devel, and rtaudio.
How to install qt5 and other needed tools on Fedora:
dnf install qt5-devel
dnf install qt5-devel
qtchooser
dnf groupinstall "C Development Tools and Libraries"
dnf groupinstall "Development Tools"
dnf install jack-audio-connection-kit-devel alsa-lib-devel iperf qjackctl audacity git
...
...
INSTALL_meson.md
View file @
b5943ea5
...
...
@@ -3,10 +3,10 @@
## Install Dependencies
Fedora:
dnf install meson qt5-qtbase-devel rtaudio-devel jack-audio-connection-kit-devel
dnf install meson qt5-qtbase-devel rtaudio-devel jack-audio-connection-kit-devel
qtchooser
Debian/Ubuntu:
apt install meson build-essential qtbase5-dev librtaudio-dev libjack-jackd2-dev
apt install meson build-essential qtbase5-dev librtaudio-dev libjack-jackd2-dev
qtchooser
MacOS with brew (not tested):
brew install meson qt rt-audio jack
...
...
src/build
View file @
b5943ea5
...
...
@@ -14,13 +14,7 @@ fi
# Set qmake command name
if
[[
$
platform
==
'linux'
]];
then
if
hash
qmake
-
qt5
2
>/
dev
/
null
;
then
echo
"Using qmake-qt5"
QCMD
=
qmake
-
qt5
elif
hash
qmake
2
>/
dev
/
null
;
then
#in case qt was compiled by user
echo
"Using qmake"
QCMD
=
qmake
fi
QCMD
=
'qtchooser -run-tool=qmake -qt=5'
QSPEC
=
linux
-
g
++
elif
[[
$
platform
==
'macosx'
]];
then
QCMD
=
qmake
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment