I recently installed KDevelop 4 for C++ development on my Macbook Pro running Ubuntu 12.04 LTS.
I want to embed Python application in my C++ code. To do that, one ne
You want to include the following on the compile line:
`python-config --cflags`
and this on the link line:
`python-config --ldflags`