0df3aedfa8
This renames the WITH_WINDOWS_PDB and WITH_WINDOWS_STRIPPED_PDB cmake options to WITH_WINDOWS_RELEASE_PDB WITH_WINDOWS_RELEASE_STRIPPED_PDB The Stripped PDB isn't cost free to generate, and is only needed for builds that are distributed to end users. There is no benefit in making one for a debug build as the debugger locally will prefer to use the bigger un-stripped PDB anyhow. This also stops the copy/install of the PDB for anything but a release build, this file is about 1.6G for a debug build, and there is really no need to do this for local development, as the debugger will find/use the PDB from its original location. This brings down the time needed for an incremental link on a debug build by about 30% (10->7 seconds on my local system)