i have made a program in C using the gcc compiler. Right now it has no GUI components. I am compiling it with makefile and running it in the terminal. I need to deploy it so that the executable is standalone. I want the executable to have an icon and when clicked start the program in the terminal. Can anyone tell me how to do this?
|
feedback
|
The basics(disclaimer: the following was tested with kubuntu, you might need to make some adjustments for your system) Actually there is a standard to do that, not just for Ubuntu but for any number of *nix systems. Consult: http://www.freedesktop.org/wiki/Howto_desktop_files: Lets assume you have your Now you need to create
and put it in You might be able to use your menu editor to create such a file. Look for the generated desktop file under This should do the trick. Another convention is to put everything under Cross DE with PortlandThe Portland project provides the See the KDE & GNOME cross-desktop development tutorial on linuxuser.co.uk. A better wayFor deployment you should consider creating a Note that if you are using a package manager, the convention for file location becomes Go all the wayThe next step, if you are inclined to take it, is setup your own repository, or PPA. | |||||||
feedback
|
|
Chen's link gets the desktop icon and menu entry; for Ubuntu specifically (and really any Debian-derived system, for the most part), there is a whole lot of good documentation. It's available starting at this link: https://wiki.ubuntu.com/Packaging?highlight=%28CategoryPackaging%24%29 Start reading at "PackagingGuide". :) As far as running your app in a terminal under X - on Ubuntu - just run
The | ||||
|
feedback
|