I'm a complete newbie when it comes to using libraries, so any assistance would be very welcome.
I use Code::Blocks and am trying to link my code with libraries. I have two libraries to be linked : "libone.a" and "libtwo.so".
So, according to this , albeit older, tutorial, I rightclicked the project in Code::Blocks, went to Project build options -> Linker settings, and added both of the libraries. I also went to Search Directories -> Compiler, and Search Directories -> linker and added the path of the libraries.
Now, one of these libraries contains a file called "dis.hxx". However, when i put " #include < dis.hxx > " into my program, it states fatal error: dis.hxx: No such file or directory. Note that this header file is inside the .a file, not unpacked.
Am I understanding the concept of libraries wrong? How can I make this work?