# Paul Licameli (PRL) 29 Nov 2014
#IMPROVED_SEEKING
- #MIDI_IN
-
- # JKC, 17 Aug 2017
- # Enables the MIDI note stretching feature, which currently
- # a) Is broken on Linux (Bug 1646)
- # b) Crashes with Sync-Lock (Bug 1719)
- # c) Needs UI design review.
- #MIDI_STRETCHING
-
- # USE_MIDI must be defined in order for SCOREALIGN to work
- #SCOREALIGN
-
#Automatically tries to find an acceptable input volume
#AUTOMATED_INPUT_LEVEL_ADJUSTMENT
# EASY_CHANGE_KEY_BINDINGS
)
+if( NOT audacity_use_midi STREQUAL "off" )
+ list( APPEND EXPERIMENTAL_OPTIONS_LIST
+ #MIDI_IN
+
+ # JKC, 17 Aug 2017
+ # Enables the MIDI note stretching feature, which currently
+ # a) Is broken on Linux (Bug 1646)
+ # b) Crashes with Sync-Lock (Bug 1719)
+ # c) Needs UI design review.
+ #MIDI_STRETCHING
+
+ # USE_MIDI must be defined in order for SCOREALIGN to work
+ #SCOREALIGN
+ )
+endif()
+
# Now define the flags
list( TRANSFORM EXPERIMENTAL_OPTIONS_LIST PREPEND "EXPERIMENTAL_" )
add_compile_definitions( ${EXPERIMENTAL_OPTIONS_LIST} )