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
cb85a332
Commit
cb85a332
authored
Jul 06, 2020
by
Marcin Paczkowski
Browse files
build in a subdirectory
parent
316d4bec
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
cb85a332
# QtCreator user files
*.pro.user
*.pro.user.*
# build directory
builddir/
INSTALL.txt
View file @
cb85a332
...
...
@@ -103,7 +103,7 @@ $ qmake -config nojack jacktrip.pro
$ make release
If you want to install (using Terminal): on the /
src
directory type:
If you want to install (using Terminal): on the /
builddir
directory type:
$ sudo cp jacktrip /usr/local/bin/
(enter your password when prompted)
...
...
src/build
View file @
cb85a332
...
...
@@ -28,15 +28,17 @@ elif [[ $platform == 'macosx' ]]; then
fi
# Build
mkdir
-
p
..
/
builddir
cd
..
/
builddir
if
[[
$
1
==
'nojack'
]];
then
echo
"Building without Jack"
$
QCMD
-
spec
$
QSPEC
-
config
nojack
jacktrip
.
pro
$
QCMD
-
spec
$
QSPEC
-
config
nojack
..
/
src
/
jacktrip
.
pro
make
clean
$
QCMD
-
spec
$
QSPEC
-
config
nojack
jacktrip
.
pro
$
QCMD
-
spec
$
QSPEC
-
config
nojack
..
/
src
/
jacktrip
.
pro
make
release
else
$
QCMD
-
spec
$
QSPEC
jacktrip
.
pro
$
QCMD
-
spec
$
QSPEC
..
/
src
/
jacktrip
.
pro
make
clean
$
QCMD
-
spec
$
QSPEC
jacktrip
.
pro
$
QCMD
-
spec
$
QSPEC
..
/
src
/
jacktrip
.
pro
make
release
fi
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