Jacob Faibussowitsch
Jacob Faibussowitsch
`rapids_cmake_write_version_file()` currently only results in ```c++ #define PROJECT_VERSION_MAJOR #define PROJECT_VERSION_MINOR #define PROJECT_VERSION_PATCH ``` but there are a few other "version" related utility macros that it could generate while we are...
### Does the feature exist in the most recent commit? Tested on `v1.13.0`, but the same problem also exists at head: https://github.com/google/googletest/blob/79219e26e0e36b415a5804b6b017ad6c6cd99ad8/googletest/include/gtest/internal/gtest-internal.h#L1367-L1373 where `GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_()` expands as https://github.com/google/googletest/blob/79219e26e0e36b415a5804b6b017ad6c6cd99ad8/googletest/include/gtest/internal/gtest-internal.h#L1312-L1316 ### Why do...
TL;DR: Is it possible to expose a fire-and-forget-like version of the async read/write functions if a `CUstream` functions are given? --- `FileHandle::read_async()` (and `write_async()`) state that these functions return a...
The generated target ends up executing: ```sh $ cmake \ -DPRINT_license_FILE_NAME=/path/to/licenses.txt \ -DPRINT_license_PACKAGES="...;CURL;..." \ ... \ -DCURL_SOURCE_DIR="" ``` And emits a warning: ``` WARNING: no license files found for package...
`rapids_cython_create_modules()` inspects the variable `CYTHON_FLAGS`. It's not obvious that this specific variable is consulted. This should probably be documented, or perhaps exposed as an additional argument to `rapids_cython_create_modules()`. I guess...
**Describe the bug** Consider a project: ``` pyproject.toml my_local_plugin.py src/ foo.py ``` ```toml # pyproject.toml [tool.coverage.run] plugins = ["my_local_plugin"] ``` ```python # my_local_plugin.py def coverage_init(*args, **kwargs): pass ``` And then...
```c++ bool value = false; parser.add_argument("--foo").store_into(value).nargs(0, 1); parser.parse_args({"prog", "--foo"}); assert(value); // fails ``` This pattern is useful if you want to support "rich" boolean flags: ``` --flag // flag is...
It would be useful for `Argument` to expose the flag name(s) back to the user. A common use-case for this is DRY-ness when referencing the flags after parsing, or during...
**Is your feature request related to a problem? Please describe.** I would like to be able to find a package and not care about what version is found. `find_package()` allows...
**Is your feature request related to a problem? Please describe.** Modifying the `versions.json` (either `rapids-cmake` or user-provided) should cause cmake to reconfigure. Currently it does not. **Describe the solution you'd...