
On 01/19/2018 03:34 AM, Good Guy via Boost-users wrote:
I am using VS code and compiling the code using Embarcadero bcc32c.exe.
OK I'll try using Visual Studio Community Edition to see if it works for me. I want to get used to using Boost and learn something new from the libraries and perhaps create something useful from them.
Thanks for the response.
This is not a compiler issue. This is you not adding boost header path to the compiler search paths. 1. install boost (which may or may not include compiling things) 2. add boost path to INCLUDE paths in environment, or IDE project config, or however you add these things. http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2... then you should see -I<boost_path_here> when you are compiling things. At least in the logs. If you don't, then you are not setting things up correctly. - Adam