mirror of
https://codeberg.org/armin/ambivalence.git
synced 2026-09-01 04:10:48 +02:00
UI changes, layout redefinition
This commit is contained in:
parent
42cf8432bf
commit
1d9ba772fe
12 changed files with 536 additions and 528 deletions
|
|
@ -43,7 +43,7 @@ juce_add_plugin(Ambivalence
|
|||
PLUGIN_MANUFACTURER_CODE "Otdk"
|
||||
PLUGIN_CODE "Ambi"
|
||||
FORMATS VST3 Standalone
|
||||
PRODUCT_NAME "Ambivalence1.1"
|
||||
PRODUCT_NAME "Ambivalence"
|
||||
PLUGIN_DESCRIPTION "16-channel FDN Algorithmic Reverb"
|
||||
IS_SYNTH FALSE
|
||||
NEEDS_MIDI_INPUT FALSE
|
||||
|
|
@ -118,7 +118,18 @@ target_sources(Ambivalence PRIVATE
|
|||
Source/DSP/Saturator.h
|
||||
Source/DSP/OutputLimiter.h
|
||||
Source/DSP/OutputEQ.h
|
||||
)# ============================================================================
|
||||
)
|
||||
# ============================================================================
|
||||
# factory presets (embedded, seeded into the user folder on first run)
|
||||
# ============================================================================
|
||||
file(GLOB AMBIVALENCE_FACTORY_PRESETS CONFIGURE_DEPENDS
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/Presets/*.ambpreset")
|
||||
juce_add_binary_data(AmbivalenceFactoryPresets
|
||||
NAMESPACE FactoryPresets
|
||||
HEADER_NAME FactoryPresets.h
|
||||
SOURCES ${AMBIVALENCE_FACTORY_PRESETS}
|
||||
)
|
||||
# ============================================================================
|
||||
# include paths
|
||||
# ============================================================================
|
||||
target_include_directories(Ambivalence PRIVATE
|
||||
|
|
@ -132,6 +143,7 @@ target_include_directories(Ambivalence PRIVATE
|
|||
# ============================================================================
|
||||
target_link_libraries(Ambivalence
|
||||
PRIVATE
|
||||
AmbivalenceFactoryPresets
|
||||
juce::juce_audio_basics
|
||||
juce::juce_audio_devices
|
||||
juce::juce_audio_formats
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue