emacs-cmake-project
emacs-cmake-project copied to clipboard
A minor-mode integrating the CMake build process with the Emacs ecosystem.
> emacs --version GNU Emacs 27.2 Copyright (C) 2021 Free Software Foundation, Inc. After build directory selection Emacs says: "Wrong type argument: stringp, nil".
with new version cmake such as 3.16, the output of `cmake --help` is different to that of the old version. And consequently, the function `cmake-project--available-generators` in `cmake-project.el` could not match...
Hi, CMake does support building a single directory or file, at least when generating makefiles. If you are building out of tree: cd build/src make this builds the current subtree...
Since (cmake-project--upward-find-last-file "CMakeLists.txt") returns nil cmake-project-find-root-directory errors out on file-name-as-directory(nil) e.g. in our source we have a directory with CMakeLists.txt, which contains ./src and ./include where the code lives (I...
This looks like a significant rewrite. It's not, just a lot of new code. Read through README.md. Extended functionality in many directions, such as tracking the CMake project's top-level source...