I am getting into building c++ modules for my apps. I cannot get boost or system to work.
I do the following:
#include <boost>
or
#include <system>
and BOTH things result in "boost no such file or directory" and "system no such file or directory.
I cannot begin to list the things I have attempted because the list is way too long. I have followed multiple links leading me to lots of things. But nothing seems to work. If I can get #include <system>
to work then I won't need boost. I would prefer to get #include <system>
working for that will allow me to execute command line commands inside my module.
Thanks everyone!