I have boost 1_46_1 in this path: /Users/ramy/Documents/C++ .
In a C++ xcode project I have modified the user header search paths, and added this directory : /Users/ramy/Documents/C++/boost_1_46_1 .
I am trying to include boost/regex.hpp .The file is there: if I go to /Users/ramy/Documents/C++/boost_1_46_1/boost there is regex.hpp, but I get an error when trying to build the project: boost/regex.hpp: file not found.
Asked
Active
Viewed 737 times
0

Ramy Al Zuhouri
- 21,580
- 26
- 105
- 187
1 Answers
1
hmm... Do you know that Regex Boost is not header-only ?
You may have to build Boost and link to the libraries ( linkage options )

lucasg
- 10,734
- 4
- 35
- 57
-
Ok but this is for windows, what about os x? – Ramy Al Zuhouri Nov 09 '12 at 15:16