Environment problem perhaps?
-
I am trying to use source code called BOOST\TUPLE, and I get the following error. Main.cpp C:\IT 670\Mod 4\Example2b\boost/config.hpp(26) : fatal error C1083: Cannot open include file: 'boost/config/user.hpp': No such file or directory Error executing cl.exe. The files do exist and the paths are: "C:\IT 670\Mod 4\Example2b" "C:\IT 670\Mod 4\Example2b\BOOST" "C:\IT 670\Mod 4\Example2b"\BOOST\TUPLE" In my code below I use #include "boost\tuple\tuple.hpp", which the compiler is finding. But tuple.hpp uses 'boost/config/user.hpp' which the compiler does not know how to find. I have used tools->options->directories to setup the directories so the project can find the desired files to no avail. Any suggestion would be great. Thanks The code is #include #include #include #include #include "boost\tuple\tuple.hpp" //store count, sum, and sum of squares typedef boost::tuple Stats; int main() { return 0; }
-
I am trying to use source code called BOOST\TUPLE, and I get the following error. Main.cpp C:\IT 670\Mod 4\Example2b\boost/config.hpp(26) : fatal error C1083: Cannot open include file: 'boost/config/user.hpp': No such file or directory Error executing cl.exe. The files do exist and the paths are: "C:\IT 670\Mod 4\Example2b" "C:\IT 670\Mod 4\Example2b\BOOST" "C:\IT 670\Mod 4\Example2b"\BOOST\TUPLE" In my code below I use #include "boost\tuple\tuple.hpp", which the compiler is finding. But tuple.hpp uses 'boost/config/user.hpp' which the compiler does not know how to find. I have used tools->options->directories to setup the directories so the project can find the desired files to no avail. Any suggestion would be great. Thanks The code is #include #include #include #include #include "boost\tuple\tuple.hpp" //store count, sum, and sum of squares typedef boost::tuple Stats; int main() { return 0; }