Function: ede-generic-setup-configuration

ede-generic-setup-configuration is a byte-compiled function defined in generic.el.gz.

Signature

(ede-generic-setup-configuration ARG &rest ARGS)

Implementations

(ede-generic-setup-configuration (PROJ ede-generic-vc-project) CONFIG) in `ede/generic.el'.

Setup a configuration for projects identified by revision control.

(ede-generic-setup-configuration (PROJ ede-generic-cmake-project) CONFIG) in `ede/generic.el'.

Setup a configuration for CMake.

(ede-generic-setup-configuration (PROJ ede-generic-scons-project) CONFIG) in `ede/generic.el'.

Setup a configuration for SCONS.

(ede-generic-setup-configuration (PROJ ede-generic-makefile-project) CONFIG) in `ede/generic.el'.

Setup a configuration for Make.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/generic.el.gz
(cl-defmethod ede-generic-setup-configuration ((_proj ede-generic-makefile-project) config)
  "Setup a configuration for Make."
  (oset config build-command "make -k")
  (oset config debug-command "gdb ")
  )