Function: ede-compiler

ede-compiler is a byte-compiled function defined in proj-comp.el.gz.

Signature

(ede-compiler &rest SLOTS)

Documentation

Create a new object of class type ede-compiler(var)/ede-compiler(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/proj-comp.el.gz
(defclass ede-compiler (ede-compilation-program)
  ((makedepends :initarg :makedepends
		:initform nil
		:type boolean
		:documentation
		"Non-nil if this compiler can make dependencies.")
   (uselinker :initarg :uselinker
	      :initform nil
	      :type boolean
	      :documentation
	      "Non-nil if this compiler creates code that can be linked.
This requires that the containing target also define a list of available
linkers that can be used.")
   )
  "Definition for a compiler.
Different types of objects will provide different compilers for
different situations.")