The following NED types could not be fully resolved, due to a missing base type or interface

886 Views Asked by At

I want to run my project through Cmdenv. In the project's omnetpp.ini file I specialized ned-path as: ned-path = /omnetpp-4.6/samples/VDLM4net;/omnetpp-4.6/samples/MiXiM/src/base;/omnetpp-4.6/samples/MiXiM/src/modules And when I'm trying to use Cmdenv there is an error:error in console I'm using omnetpp-4.6 on Windows with standalone project referenced to MiXiM-2.3

1

There are 1 best solutions below

1
On

I solved my problem. At first, in .ini file I specified all possible ned paths than potentially can be used in project. In my case it is look like this: ned-path = .;../MiXiM/examples;../MiXiM/src/base;../MiXiM/src/inet_stub‌​;../MiXiM/src/module‌​s . After it, in command line I wrote: ./VDLM4net -u Cmdenv -l ../MiXiM/src/mixim So, additionally, I specified the MiXiM shared liabrary. All works fine now.