Unable to link cutil.h in OS Lion

I’ve got a problem linking cutil.h on my MacBook Air (NVIDIA GeForce 320M 256 MB). The program just won’t see it! All the drivers and packages are set up. I’ve tried it many different ways like putting the library into my project’s folder and even adding it to libraries list. What do I do?

cutil.h is a header file and gets included, not linked. If you are seeing linker errors, that is because the object file (cutil.cpp.o) is missing in your project, not cutil.h.

In general, don’t include cutil into your own projects though. It’s a mess and not supported by Nvidia. If you need some function of it, move it to your own sourcecode and maintain it yourself.