MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt 694 B

123456789101112131415
  1. ``Embedded``
  2. Compile with ``-Z7`` or equivalent flag(s) to produce object files
  3. with full symbolic debugging information.
  4. ``ProgramDatabase``
  5. Compile with ``-Zi`` or equivalent flag(s) to produce a program
  6. database that contains all the symbolic debugging information.
  7. ``EditAndContinue``
  8. Compile with ``-ZI`` or equivalent flag(s) to produce a program
  9. database that supports the Edit and Continue feature.
  10. The value is ignored on non-MSVC compilers but an unsupported value will
  11. be rejected as an error when using a compiler targeting the MSVC ABI.
  12. The value may also be the empty string (``""``) in which case no debug
  13. information format flag will be added explicitly by CMake.