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
相关问题
- Is it possible to use RInside in omnet++/Veins pro
- How to create own header structure in OMNET++
- How to get Coordinates of each vehicle in VEINS?
- Omnet++ , veins , the number of neighbors nodes fo
- How to collect traffic data and macroscopic statis
相关文章
- Wave Service Advertisement (WSA) implementation
- Omnet++ : Ad Hoc Network
- How can I get a traffic light that exists in sumo
- How can I combine my customize module with Omnet++
- Using a subset of a SUMO scenario for OMNeT++ netw
- Transmission of vehicular status in Veins
- Calculating distance between cars nodes VEINS
- How to change configuration of network during simu
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/modules . 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.