1

I want to add several C++ libraries, such as Boost, to work in Mac. How can I do that?

Amp Tanawat
  • 598
  • 1
  • 5
  • 10

1 Answers1

1

If you have homebrew installed boost can easily be installed from the command line:

brew install boost

Depending on what the other libraries you want to install are you can do the same with those. Just make sure it's a "Formula" check here. If it's not a "Formula" then read the documentation for the library about installation on osx.

Dillon Benson
  • 4,280
  • 4
  • 23
  • 25