What needs to be added to the CMakeLists.txt file of the project so that the notelemetry.obj
option is appended to the Visual Studio 2019's Linker ->Command Line-> Additional Options
field.
notelemetry.obj
is not a file, it is an option passed to the linker so that it won't embed data collection logic in your code.
See this if you are interested, my question is how do you pass this option to the linker with cmake?