Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
L
Lichtsteuerung
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Iterations
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Leander Schulten
Lichtsteuerung
Commits
936208cb
Commit
936208cb
authored
Mar 27, 2020
by
Leander Schulten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not use a git submodule for RtAudio, so that always the newest version is chosen
parent
115334d1
Pipeline
#260929
passed with stage
in 11 minutes and 12 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
11 deletions
+16
-11
.gitmodules
.gitmodules
+0
-3
src/lib/RtAudio/.gitignore
src/lib/RtAudio/.gitignore
+1
-1
src/lib/RtAudio/build_rtAudio.sh
src/lib/RtAudio/build_rtAudio.sh
+15
-6
src/lib/RtAudio/rtaudio
src/lib/RtAudio/rtaudio
+0
-1
No files found.
.gitmodules
View file @
936208cb
[submodule "src/lib/aubio/aubio.git"]
path = src/lib/aubio/aubio.git
url = https://github.com/aubio/aubio
[submodule "src/lib/RtAudio/rtaudio"]
path = src/lib/RtAudio/rtaudio
url = https://github.com/thestk/rtaudio.git
src/lib/RtAudio/.gitignore
View file @
936208cb
*/*
\ No newline at end of file
*
src/lib/RtAudio/build_rtAudio.sh
View file @
936208cb
#!/bin/bash
set
-e
# see https://github.com/thestk/rtaudio/blob/master/install.txt
# add and update git submodule
git submodule init
git submodule update
# cd into git repo
GIT_DIR
=
rtaudio
cd
$GIT_DIR
# add or update git
if
[
!
-d
"
$GIT_DIR
"
]
;
then
# if folder "GIT_DIR" does not exists
git clone https://github.com/thestk/rtaudio.git
"
$GIT_DIR
"
cd
"
$GIT_DIR
"
else
cd
"
$GIT_DIR
"
if
[[
$(
git pull
)
=
"Already up to date."
]]
;
then
# we can skip recompiling, because the last build is already up to date
echo
"Already up to date."
exit
0
fi
fi
# we are in the "$GIT_DIR" now
# build
if
[[
"
$OSTYPE
"
==
"msys"
]]
||
!
[[
-z
"
$GITLAB_CI
"
]]
;
then
# we are on windows or on the gitlab ci
...
...
rtaudio
@
57c2c9d7
Compare
57c2c9d7
...
57c2c9d7
Subproject commit 57c2c9d7598a783a5167422cd744f4d3797141bb
Write
Preview
Markdown
is supported
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