So here's what i have:
I've started a plain c++ project and i wanna make a little game to practise.
Now my sample c++ class test works, and the library sample (nRGB) works too.
But i'm stuck at that point where i want to combine them. It always says something like:
undefined reference to `<every function i wanted to use out of the library>'
I tried this for days now, would be awesome if someone could tell a noob what to do
Solution:
extern "C" {
#include <nGEO.h>
...
}