https://github.com/xuhdev/cmdlauncher
Launch a command in a graphical way. This repo mirrors git://git.savannah.nongnu.org/cmdlauncher.git
https://github.com/xuhdev/cmdlauncher
Last synced: about 2 months ago
JSON representation
Launch a command in a graphical way. This repo mirrors git://git.savannah.nongnu.org/cmdlauncher.git
- Host: GitHub
- URL: https://github.com/xuhdev/cmdlauncher
- Owner: xuhdev
- Created: 2014-12-21T07:22:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-14T07:59:03.000Z (almost 11 years ago)
- Last Synced: 2025-01-14T07:24:03.422Z (over 1 year ago)
- Language: C++
- Homepage: http://cmdlauncher.topbug.net
- Size: 453 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
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
.
5. License
Copyright (c) 2011-2015 Hong Xu
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 .