jehelset

Results 5 comments of jehelset

note that for cmake specifically you can use [cmake-presets](https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html) to tailor the project-commands (provided you have a recent enough cmake, which you do on arch). cmake-preset based commands can be...

you can stuff system-wide configurations in f.ex. `~/.config/cmake/presets.json` and reuse on a project-level in your user-presets-file with `include` and `inherit`. this is not meant to be part of the project...

i think this is simply how the project-type-agnostic`projectile-configure-command` works (https://github.com/bbatsov/projectile/blob/master/projectile.el#L4337). it will prefer to use the cached command. to get the behaviour you want, one would have to be able...

as a quickfix you could use something like this: ```elisp (defun projectile-reconfigure-command (compile-dir) "Retrieve the configure command for COMPILE-DIR without considering history. The command is determined like this: - first...

My mistake, arch doesn't ship the cmake-package-config, it instead ships a busted pkgconfig, but if you want to package it you would have to patch the CML to avoid the...