Skip to content

Commit 341d6bc

Browse files
committed
Disable ALSA MIDI backend
1 parent b27ce9b commit 341d6bc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build_and_run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Run Tests
33
on:
44
push:
55
branches:
6-
- 'development'
6+
- 'tmp'
77
workflow_dispatch:
88

99
jobs:

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,10 @@ elseif(LINUX)
227227
"-fvisibility=hidden -fPIC -rdynamic -Wl,-rpath,'$ORIGIN/shared'")
228228

229229
target_compile_options(open-ephys PRIVATE -fPIC -rdynamic -fvisibility=hidden)
230+
target_compile_definitions(open-ephys PRIVATE
231+
JUCE_DISABLE_ALSA=1
232+
JUCE_DISABLE_ALSA_MIDI=1
233+
)
230234
set_property(TARGET open-ephys PROPERTY RUNTIME_OUTPUT_DIRECTORY ${BASE_BUILD_DIRECTORY}/${CMAKE_BUILD_TYPE})
231235
if(BUILD_TESTS)
232236
target_include_directories(gui_testable_source PRIVATE

0 commit comments

Comments
 (0)