I know where the make-files are. But what I am trying is to integrate the lib I built with Rhapsody in a nem (codeblocks)-project.
I link the rhapsody-lib and the oxf-lib but always get errors.
undefined reference to `orcs::theOrcs::theOrcs(IOxfActive*)'
What I want to know is if I have to link something else accept oxf and the lib I generated with Rhapsody.
The external project just looks like this one file:
#include <oxf\oxf.h>
#include <aom\aom.h>
#include "orcs\theOrcs.h"
int main(int argc, char* argv[])
{
if(OXF::initialize(argc, argv, 6423))
{
orcs::theOrcs * p_theOrcs;
p_theOrcs = new orcs::theOrcs;
p_theOrcs->startBehavior();
OXF::start();
delete p_theOrcs;
return 0;
}
else
{
return 1;
}
}