Is it possible to generate a Visual Studio project with node-gyp
such that it will include a specified .natvis
file?
When I manually add a .natvis
file to my C++ project, I see that my .vcxproj
file is updated with the following block:
<ItemGroup>
<Natvis Include="filename.natvis">
<SubType>Designer</SubType>
</Natvis>
</ItemGroup>
Is it possible to configure my binding.gyp
file to generate such block?
Thanks