
Now that you have the backend stuff all installed, you can start setting up your application to use them. This requires adding the libkio library to your linking and including the proper header files.
If you are using the standard KDE automake/autoconf system for your application, then you are in luck! Adding another library is trivial:
Edit Makefile.am
Change the line <yourapp>_LDADD to look something like:
myapp_LDADD = $(LIB_KIO)
|
That's it! If you are not using the KDE setup, then just make sure that you are including the following in your link stage:
-lkio -lkdeui -lkdecore -lqt -dl |