I'm trying to use a specific module that I have written both from normal code and from compile-time code (via macros).
Some aspects of the module in question make use of external C library and thus they cannot be used at compile-time, so I'm thinking of `when`-disabling the parts that are not meant for compileTime use. Is there a recommended way to check if that is the case? (Basically, I'm looking for something along the lines of `when defined(compileTime)`...)
