Function: project-compile-project
project-compile-project is a byte-compiled function defined in
ede.el.gz.
Signature
(project-compile-project ARG &rest ARGS)
Implementations
(project-compile-project (OBJ project-am-makefile) &optional COMMAND) in `ede/project-am.el'.
Compile the entire current project. Argument COMMAND is the command to use when compiling.
(project-compile-project (OBJ project-am-target) &optional COMMAND) in `ede/project-am.el'.
Compile the entire current project. Argument COMMAND is the command to use when compiling.
(project-compile-project (PROJ ede-proj-project) &optional COMMAND) in `ede/proj.el'.
Compile the entire current project PROJ. Argument COMMAND is the command to use when compiling.
(project-compile-project (PROJ ede-linux-project) &optional COMMAND) in `ede/linux.el'.
Compile the entire current project. Argument COMMAND is the command to use when compiling.
(project-compile-project (PROJ ede-cpp-root-project) &optional COMMAND) in `ede/cpp-root.el'.
Compile the entire current project PROJ. Argument COMMAND is the command to use when compiling.
(project-compile-project (PROJ ede-project-with-config-build) &optional COMMAND) in `ede/config.el'.
Compile the entire current project PROJ. Argument COMMAND is the command to use when compiling.
(project-compile-project (OBJ ede-project) &optional COMMAND) in `ede.el'.
Compile the entire current project OBJ. Argument COMMAND is the command to use when compiling.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(cl-defmethod project-compile-project ((obj ede-project) &optional _command)
"Compile the entire current project OBJ.
Argument COMMAND is the command to use when compiling."
(error "compile-project not supported by %s" (eieio-object-name obj)))