xuhdev/cmdlauncher
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
1. Overview CmdLauncher is a project aimed at help people launch a command in a graphical way. CmdLauncher is based on Qt and works on GNU/Linux, Mac OS X and MS-Windows, and maybe FreeBSD, NetBSD.If you are a developer and you have developed a console program, you could use CmdLauncher to let your program launch in a graphical way so that people who are not computer experts can also use it. 2. Install On UNIX-like systems (including GNU/Linux, FreeBSD, NetBSD, etc.): First make sure that you have installed cmake, Qt4 and its develop tools. Then depress the source arhive and switch to the source directory of this project and use the following commands to compile it: $ cmake . $ make To install it: # make install For other platforms (such as Win32), just use cmake to generate the project file and use your favorate compiler to build it. 3. Usage To use it, create a file storing the information of your command first, for example "example.cla". Edit this file with a text editor. The format of this file could be reffered to sample.cla. Execute "cmdlauncher sample.cla" to see how it works. 4. Questions, Bug Reports and Contribution Questions can be asked on the mailing list https://lists.nongnu.org/mailman/listinfo/cmdlauncher-general You can report bugs in the issue tracker https://savannah.nongnu.org/bugs/?func=additem&group=cmdlauncher Please send patches or pull requests to this link https://savannah.nongnu.org/patch/?func=additem&group=cmdlauncher Alternatively, you can also send them to the mailing list or GitHub <https://github.com/xuhdev/cmdlauncher/pulls>. 5. License Copyright (c) 2011-2015 Hong Xu <hong@topbug.net> CmdLauncher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. CmdLauncher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with CmdLauncher. If not, see <http://www.gnu.org/licenses/>.