17 Jul
2002
17 Jul
'02
11:28 p.m.
From: "Ihsan Ali Al Darhi"
Trying to use Dev-C++ with Boost. I created a new project and included all the Boost header files in the settings of the compiler. I added a new module and wrote a main() {} function after included some header files of Boost.
Whe I tried to compile the program it produces an error message that the header files don't exist!!!!
Try adding it to the project include path: Project->Project Options->Files/Directories->Include Directories. Note that if you include ".../boost" there, you also have to use "boost/..." in the #include, as the path is ".../boost/boost/...". It works for me. Regards, Terje