I've bought a class. I have the header (.h
) and an object-file (.o
).
How do I link the .o
file in my NetBeans IDE ?
Thanks!
I've bought a class. I have the header (.h
) and an object-file (.o
).
How do I link the .o
file in my NetBeans IDE ?
Thanks!
You need to add your
.o
file as an external library. I was able to accomplish this using the following steps:Build->Linker
options, add a library to the Libraries section.o
file and select theabsolute path
optionHopefully this will work for you also.