I need to build my C++ add-on for NAPI_VERSION set to 4. I've added following lines at the end of my `binding.gyp` file: ```gyp "defines": [ "NAPI_VERSION=4", ] ``` after running `npm run gyp-to-cmake` in the generated `CMakeLists.txt` I get: ```cmake add_compile_definitions(-DNAPI_VERSION=8) ``` I've also tried adding following to my add-on's `package.json`: ```json "binary": { "napi_versions": [4] } ``` but I get the same result. I've also tried other options from [`node-pre-gyp` README](https://github.com/mapbox/node-pre-gyp?tab=readme-ov-file#defining-napi_version-for-the-cc-code) but they also didn't worked.