I'm working on ns-3 to include header files to my own module. I've tried to type commands on ./waf command and wscript file, but it doesn't work. Below I listed the commands that I've tried.
In wscript file,
conf.env.append_value('CXXFLAGS', ['-I/path/to/directory'])
conf.env.append_value('INCLUDES', '/path/to/directory')
In ./waf command,
./waf --run file_name --includedir /path/to/directory
./waf --run file_name --includedir/path/to/directory
And in my script, I just put #include "headerfile.h"
which is in the directory.
Thank you.