Put this in your `build.rs` to use the C pre-processor with Rust.
```rust
fn main() {
}
```
This will pre-process any `.cpprs` source files in `src/` using
[GCC](https://gcc.gnu.org/).
See the [lzo-macros](https://github.com/vmchale/cpp-build/tree/main/lzo-macros)
example.
The C pre-processor will discard any lines beginning with `#`, so that e.g.
```
```
would be thrown away.