I have an error with omnet++5.1.1 and veins4.6. While build the project, I received error message as below:
g++ -c -std=c++11 -g -Wall -MMD -MP -MF out/gcc-debug//Attacker.d -isystem /usr/include -isystem /mingw64/include -fno-stack-protector -DXMLPARSER=libxml -DPREFER_QTENV -DWITH_QTENV -DWITH_TKENV -DWITH_PARSIM -DWITH_NETBUILDER -DWITH_OSG -DWITH_OSGEARTH -DINET_IMPORT -I/c/Users/xiruoliu/src/omnetpp-5.1.1/include -o out/gcc-debug//Attacker.o Attacker.cc
In file included from Attacker.cc:21:0:
Attacker.h:26:68: fatal error:
veins/modules/application/ieee80211p/BaseWaveApplLayer.h: No such file or directory
#include "veins/modules/application/ieee80211p/BaseWaveApplLayer.h"
^
compilation terminated.
make: *** [Makefile:105: out/gcc-debug//Attacker.o] Error 1
I also tried to add the veins directory in makefile or change the directory in include statement to the complete path as #include "/c/Users/xiruoliu/src/veins-4.6/src/veins/modules/application/ieee80211p/BaseWaveApplLayer.h". But it still failed.
The code used to work with oment++5.0 and veins4.5. Does anyone has a clue?