Antoine Prouvost
Antoine Prouvost
Hi @tdejager, ``` - test -f "${PREFIX}/usr/local/lib/libunibilium.${SHLIB_EXT}" - test -f "${PREFIX}/usr/local/include/libunibilium.h" ``` We'd typically want to have lib installed under `"${PREFIX}/lib"` and headers under `"${PREFIX}/include"`. Do you know if there...
A dirty fix could be to install in a local directory, then `mv` the folder to `"${PREFIX}"` (if the install folder is not hard-coded anywhere)
Looks like it could be done with `PREFIX` rather than `DESTDIR`. It looks like there is also a `CMakeLists.txt` but `brew` seems to not be using it either so let's...
If you can that would be nice!
Should the documentation be updated to inform users of that feature?
I don't know the specifics, but surely we want to be using only one option, not a mix of both, right? (There is even a hard-coded `\033[...`)
@wolfv I'm looking into it and there is the following limitation: `fmt` does not support both writing to an `std::ostream` *and* using colors. So we would have to do: ```cpp...
I also want to point out that we are *explicitly* using `fmt`, while only getting it through `spdlog` (and that the `spdlog` conda package does not use the `fmt` package...
I found this issue looking for a clever way to set the number of CPU for `make` as well. My idea was be to have a special `{{.CPU}}` value dynamically...
Hi @MarioSchwalbe, in my case I would have a certain number of tasks that can be parallelize, not only `make` tasks. My goal is to get `n_cpu(make) + n_cpu(Task) ==...