How can i use boost library with bada SDK? I have already build boost library on my pc. I found this hints, but i don't understand very well what i should exactly to do. Thanks!!
Asked
Active
Viewed 147 times
1 Answers
0
To get your Bada project using BOOST, you should do the following:
- Install BOOST on your PC.
- Set BOOST environment variable referencing the base directory of the BOOST directory
- Edit your Bada project properties : Go in C/C++ Build > Settings > Directories
- Add "${BOOST}/" to include paths
Then include BOOST headers (for example #include <boost/smart_ptr.hpp>
) and use BOOST type

david
- 1,311
- 12
- 32