Function: ede-extra-config-program

ede-extra-config-program is a byte-compiled function defined in config.el.gz.

Signature

(ede-extra-config-program &rest SLOTS)

Documentation

Create a new object of class type ede-extra-config-program(var)/ede-extra-config-program(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
;;; PROJECT MIXINS
;;
;; These are project part mixins.  Use multiple inheritance for each
;; piece of these configuration options you would like to have as part
;; of your project.

;;; PROGRAM
;; If there is a program that can be run or debugged that is unknown
;; and needs to be configured.
(defclass ede-extra-config-program ()
  ((debug-command :initarg :debug-command
		  :initform "gdb "
		  :type string
		  :group commands
		  :custom string
		  :group (default build)
		  :documentation
		  "Command used for debugging this project.")
   (run-command :initarg :run-command
		:initform ""
		:type string
		:group commands
		:custom string
		:group (default build)
		:documentation
		"Command used to run something related to this project."))
  "Class to mix into a configuration for debug/run of programs.")