Entities not mapped

Hello,
I sent and email to the support using the online form two days ago but i still have no answer. It looks like this forum is more active.

I'm posting here about another problem I'm facing (i mean different from the one explained in my email).

I have mapped several entities, and I generate the SQL code to create the database (without executing it). The thing is, for some reasons, around 1/3 of the entities are missing.
For instance I have this very basic one :

unit Motcle;

interface
uses Aurelius.Mapping.Attributes;

type
  [Entity]
  [AutoMapping]
  TMotcle = class(TObject)
  private
    FId : integer;
    FLibelle : string;
  public
    property Id : integer read FId write FId;
    property Libelle : string read FLibelle write FLibelle;
end;

implementation

end.
Well it doesn't appear anywhere in the SQLstatement generated for the database creation??
I have another basic entity that looks exactly like this one except it's named "Ecran" and I do get
CREATE TABLE ECRAN (
  ID INTEGER NOT NULL,
  NOM VARCHAR(255) NOT NULL,
  CONSTRAINT PK_ECRAN PRIMARY KEY (ID));

Do you have any idea why an entity wouldnt actually be mapped ?
I've tried to generate a runtime error for aurelius to see if this file was read at all by aurelius.
I specified a table name for this entity chosing a tablename that was already existing, I had no error form aurelius..

Thank you in advance,

Antoine

I read a previous post from the forum and I got my answer. I wasn't using these entities yet.
I had suspected something like this so I had tried to add my unmapped unit to the "uses" clause of the unit generating the sql statements. It obviously wasn't enough :)