sudara / melatonin_inspector

A JUCE module that gives you the ability to inspect and visually edit (non-destructively) components in your UI.
MIT License
145 stars 17 forks source link

Allow builds without JUCE's Audio Processors module #37

Closed andyjtb closed 1 year ago

andyjtb commented 1 year ago

Useful for adding the inspector to GUI applications that aren't plugins

andyjtb commented 1 year ago

@sudara It's added in the Projucer here: https://github.com/juce-framework/JUCE/blob/69795dc8e589a9eb5df251b6dd994859bf7b3fab/extras/Projucer/Source/ProjectSaving/jucer_ProjectSaver.cpp#L422

And in CMake here: https://github.com/juce-framework/JUCE/blob/69795dc8e589a9eb5df251b6dd994859bf7b3fab/extras/Build/CMake/JUCEModuleSupport.cmake#L537

It's used throughout the JUCE code base

sudara commented 1 year ago

Thank you!