Beginner's question : tutorial code basic plugin

Hello all from a newcomer,

Just beginning to go thru the tutorials.

Did this:

http://www.juce.com/doc/tutorial_code_basic_plugin

... but the resulting plugin does not show Midi ports in Plugin Host.

Double checked my code following the tutorial.

Is not the tutorial supposed to produce a working plugin ?

Any tip / advice ?

 

Thanks

 

Ignasi

 

 

Did you follow the first part of the tutorial too?

Followed in order from Getting started ...

See my files here:

https://github.com/korgogro/PrimerPlugIn#primerplugin-1

Thanks

From your AppConfig.h

#ifndef JucePlugin_WantsMidiInput

#define JucePlugin_WantsMidiInput 0

 

Your introjucer project is not configured correctly

 

Look at the relevant acceptMidi() function in PluginProcessor.cpp

I will go again thru the introjucer tutorials to find more about this things.

 

Thanks again :)

 

 

I.