https://github.com/emacsorphanage/qt-pro-mode
GNU Emacs major-mode for Qt build-system files
https://github.com/emacsorphanage/qt-pro-mode
build emacs emacs-lisp gnu qt qt5
Last synced: 10 months ago
JSON representation
GNU Emacs major-mode for Qt build-system files
- Host: GitHub
- URL: https://github.com/emacsorphanage/qt-pro-mode
- Owner: emacsorphanage
- License: gpl-2.0
- Created: 2017-05-01T16:49:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T17:46:46.000Z (over 7 years ago)
- Last Synced: 2025-07-03T18:11:01.640Z (12 months ago)
- Topics: build, emacs, emacs-lisp, gnu, qt, qt5
- Language: Emacs Lisp
- Homepage:
- Size: 19.5 KB
- Stars: 9
- Watchers: 5
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# qt-pro-mode [](https://travis-ci.org/EricCrosson/qt-pro-mode) [](https://melpa.org/#/qt-pro-mode) [](https://stable.melpa.org/#/qt-pro-mode)
> GNU Emacs major-mode for Qt build-system files
## Install
From [MELPA](https://melpa.org/)
```lisp
(use-package qt-pro-mode
:ensure t
:mode ("\\.pro\\'" "\\.pri\\'"))
```
Or manually, after downloading into your `load-path`
```lisp
(require 'qt-pro-mode)
(add-to-list 'auto-mode-alist '("\\.pr[io]$" . qt-pro-mode))
```
## Acknowledgments
Thanks to Todd Neal for the original version of this file, which I
found
[here](https://raw.githubusercontent.com/chriskonstad/emacs/master/elisp/qt-pro.el).
## License
GPL 2 (or higher) © [Free Software Foundation, Inc](http://www.fsf.org/about).