[Parser] Rename generated `.c` to `.cpp` files (#8894)
authorAndres Noetzli <andres.noetzli@gmail.com>
Wed, 22 Jun 2022 01:36:22 +0000 (18:36 -0700)
committerGitHub <noreply@github.com>
Wed, 22 Jun 2022 01:36:22 +0000 (18:36 -0700)
commitbb1c914e2d4c556bbfe29140715d52867d613c25
tree5fd8ff1701da867d4fe9f2d8da5f861c3220ed7a
parent9ac8cbdc2bfaa8f43b19216e0d2cce06f27fb00a
[Parser] Rename generated `.c` to `.cpp` files (#8894)

Using Clang on my machine, I am seeing the following warning:

```
clang-13: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Wdeprecated]
```

This is because we are treating the generated `.c` files as C++
files. To make our build system more robust, this commit
changes our command for generating files to rename the
generated files to use the `.cpp` extension.
src/parser/CMakeLists.txt