Anders Schau Knatten
Anders Schau Knatten
In [CMakeLists.txt](https://github.com/zivid/zivid-python/blob/master/CMakeLists.txt#L7-L8) we use `option` for `ZIVID_PYTHON_VERSION` and `ZIVID_SDK_VERSION`. `option` is [only meant for booleans](https://cmake.org/cmake/help/v3.16/command/option.html), we [should use `set`](https://cmake.org/cmake/help/v3.16/command/set.html#set-cache-entry) instead. Suggested fix: ```cmake set(ZIVID_PYTHON_VERSION "UNKNOWN" CACHE STRING "Version number to...
This is so people can subscribe to a feed with new questions as they get published. Currently the only way to do that is by paying attention on X/Mastodon/Bluesky. This...
Suggestions from @tocic: \ — \ — \: 1. use ``` instead of ` ` for code blocks (even inside quotes) — easier to read/write, code highlighting — greppable 2....
We should format questions automatically with clang-format. But some questions look better with manual formatting, so this can't always be enforced. See the discussion in https://github.com/knatten/cppquiz23/pull/306.