Function: ede-extra-config-build

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

Signature

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

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
;;; BUILD
;; If the build style is unknown and needs to be configured.
(defclass ede-extra-config-build ()
  ((build-command :initarg :build-command
		  :initform "make -k"
		  :type string
		  :group commands
		  :custom string
		  :group (default build)
		  :documentation
		  "Command used for building this project."))
  "Class to mix into a configuration for compilation.")