tags:

views:

142

answers:

1

I am writing a CLI application for Linux in Geany (a C++ IDE). I want to link a simple config file reader class so it can be used in my program. Just including it doesn't work, I get undefined reference errors. I know how to do this in Dev-C++ on Windows, but not Geany. Thanks for helping!

+1  A: 

You are not linking in appropriate libraries. There must be something called Linker Options. Check the documentation out.

dirkgently
The only way to do it is to change the linker and compiler command line options. What options do you use?
I don't use that IDE -- sorry :(
dirkgently