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 734 times
0
Ramy Al Zuhouri
- 21,259
- 23
- 100
- 183
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,376
- 4
- 33
- 53
-
Ok but this is for windows, what about os x? – Ramy Al Zuhouri Nov 09 '12 at 15:16