1

I'm following this link and trying to install Boost Compute on Mac OS. It says it can be installed with make install but I cannot find a Makefile.

I added the path to the boost-compute folder to the header search path in the Xcode project. But now boost-compute is dependent on boost in my computer, and cannot link to the boost already installed.

Thanks in advance.

KindDragon
  • 6,558
  • 4
  • 47
  • 75
ethanjyx
  • 1,970
  • 7
  • 28
  • 50

1 Answers1

1

No it doesn't, it says it's a header-only library that requires no compilation. It also says that :

Boost.Compute is a header-only library, so no linking is required. To use the library just add the include directory to the compilation flags and link with the system's OpenCL library.

zmbq
  • 38,013
  • 14
  • 101
  • 171
  • Thanks. I posted more info in my question. "I added the path to the boost-compute folder to the header search path in the Xcode project. But now boost-compute is dependent on boost in my computer, and cannot link to the boost already installed." So I think I should install the boost-compute to get it working. – ethanjyx Dec 06 '14 at 19:33