Hi,
using the latest JUCE from git.
Curious about the “browser plugin” functionality, I have just built and run the demo project from \juce\extras\browser plugins\demo.
It works fine.
Next step was “hmmm… can you run JUCE-built audio processing applications in the browser then?” and I saw in the forum a post from Jules that confirms this. This sounds great!
Now, question: how do I debug a browser plugin?
I have set a breakpoint in the demo browser plugin constructor, and also in JuceDemoBrowserPlugin::buttonClicked.
I have this for the debug settings of the project:
Command = C:\Program Files (x86)\Internet Explorer\iexplore.exe
Command arguments = "H:\Koen\Code\C++\Various\juce\extras\browser plugins\demo\test.html"
And I have enabled “generate debug info” in the linker settings.
I have registered the dll with regsvr32.exe.
When I press F5 (Start debugging), the browser starts with the correct page, and the JUCE browser plugin is shown.
But in my project, my 2 breakpoints have a “warning” icon that says something like “no symbols loaded”.
Any idea what to do? I’m probably missing something obvious…
Koen