Sindbad~EG File Manager
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<title>MSVC_DEBUG_INFORMATION_FORMAT — CMake 3.26.5 Documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../_static/cmake.css" />
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/_sphinx_javascript_frameworks_compat.js"></script>
<script src="../_static/doctools.js"></script>
<link rel="shortcut icon" href="../_static/cmake-favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="MSVC_RUNTIME_LIBRARY" href="MSVC_RUNTIME_LIBRARY.html" />
<link rel="prev" title="MAP_IMPORTED_CONFIG_<CONFIG>" href="MAP_IMPORTED_CONFIG_CONFIG.html" />
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="MSVC_RUNTIME_LIBRARY.html" title="MSVC_RUNTIME_LIBRARY"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="MAP_IMPORTED_CONFIG_CONFIG.html" title="MAP_IMPORTED_CONFIG_<CONFIG>"
accesskey="P">previous</a> |</li>
<li>
<img src="../_static/cmake-logo-16.png" alt=""
style="vertical-align: middle; margin-top: -2px" />
</li>
<li>
<a href="https://cmake.org/">CMake</a> »
</li>
<li>
<a href="../index.html">3.26.5 Documentation</a> »
</li>
<li class="nav-item nav-item-1"><a href="../manual/cmake-properties.7.html" accesskey="U">cmake-properties(7)</a> »</li>
<li class="nav-item nav-item-this"><a href="">MSVC_DEBUG_INFORMATION_FORMAT</a></li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="msvc-debug-information-format">
<span id="prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT"></span><h1>MSVC_DEBUG_INFORMATION_FORMAT<a class="headerlink" href="#msvc-debug-information-format" title="Permalink to this heading">ΒΆ</a></h1>
<div class="versionadded">
<p><span class="versionmodified added">New in version 3.25.</span></p>
</div>
<p>Select debug information format when targeting the MSVC ABI.</p>
<p>The allowed values are:</p>
<dl class="simple">
<dt><code class="docutils literal notranslate"><span class="pre">Embedded</span></code></dt><dd><p>Compile with <code class="docutils literal notranslate"><span class="pre">-Z7</span></code> or equivalent flag(s) to produce object files
with full symbolic debugging information.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">ProgramDatabase</span></code></dt><dd><p>Compile with <code class="docutils literal notranslate"><span class="pre">-Zi</span></code> or equivalent flag(s) to produce a program
database that contains all the symbolic debugging information.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">EditAndContinue</span></code></dt><dd><p>Compile with <code class="docutils literal notranslate"><span class="pre">-ZI</span></code> or equivalent flag(s) to produce a program
database that supports the Edit and Continue feature.</p>
</dd>
</dl>
<p>The value is ignored on compilers not targeting the MSVC ABI, but an
unsupported value will be rejected as an error when using a compiler
targeting the MSVC ABI.</p>
<p>The value may also be the empty string (<code class="docutils literal notranslate"><span class="pre">""</span></code>), in which case no debug
information format flag will be added explicitly by CMake.</p>
<p>Use <span class="target" id="index-0-manual:cmake-generator-expressions(7)"></span><a class="reference internal" href="../manual/cmake-generator-expressions.7.html#manual:cmake-generator-expressions(7)" title="cmake-generator-expressions(7)"><code class="xref cmake cmake-manual docutils literal notranslate"><span class="pre">generator</span> <span class="pre">expressions</span></code></a> to
support per-configuration specification. For example, the code:</p>
<div class="highlight-cmake notranslate"><div class="highlight"><pre><span></span><span class="nf">add_executable(</span><span class="nb">foo</span><span class="w"> </span><span class="nb">foo.c</span><span class="nf">)</span><span class="w"></span>
<span class="nf">set_property(</span><span class="no">TARGET</span><span class="w"> </span><span class="nb">foo</span><span class="w"> </span><span class="no">PROPERTY</span><span class="w"></span>
<span class="w"> </span><span class="no">MSVC_DEBUG_INFORMATION_FORMAT</span><span class="w"> </span><span class="s">"$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>"</span><span class="nf">)</span><span class="w"></span>
</pre></div>
</div>
<p>selects for the target <code class="docutils literal notranslate"><span class="pre">foo</span></code> the program database debug information format
for the Debug configuration.</p>
<p>If this property is not set, CMake selects a debug information format using
the default value <code class="docutils literal notranslate"><span class="pre">$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase></span></code>, if
supported by the compiler, and otherwise
<code class="docutils literal notranslate"><span class="pre">$<$<CONFIG:Debug,RelWithDebInfo>:Embedded></span></code>.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>This property has effect only when policy <span class="target" id="index-0-policy:CMP0141"></span><a class="reference internal" href="../policy/CMP0141.html#policy:CMP0141" title="CMP0141"><code class="xref cmake cmake-policy docutils literal notranslate"><span class="pre">CMP0141</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">NEW</span></code>
prior to the first <span class="target" id="index-0-command:project"></span><a class="reference internal" href="../command/project.html#command:project" title="project"><code class="xref cmake cmake-command docutils literal notranslate"><span class="pre">project()</span></code></a> or <span class="target" id="index-0-command:enable_language"></span><a class="reference internal" href="../command/enable_language.html#command:enable_language" title="enable_language"><code class="xref cmake cmake-command docutils literal notranslate"><span class="pre">enable_language()</span></code></a> command
that enables a language using a compiler targeting the MSVC ABI.</p>
</div>
</section>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<div>
<h4>Previous topic</h4>
<p class="topless"><a href="MAP_IMPORTED_CONFIG_CONFIG.html"
title="previous chapter">MAP_IMPORTED_CONFIG_<CONFIG></a></p>
</div>
<div>
<h4>Next topic</h4>
<p class="topless"><a href="MSVC_RUNTIME_LIBRARY.html"
title="next chapter">MSVC_RUNTIME_LIBRARY</a></p>
</div>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
<input type="submit" value="Go" />
</form>
</div>
</div>
<script>document.getElementById('searchbox').style.display = "block"</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="MSVC_RUNTIME_LIBRARY.html" title="MSVC_RUNTIME_LIBRARY"
>next</a> |</li>
<li class="right" >
<a href="MAP_IMPORTED_CONFIG_CONFIG.html" title="MAP_IMPORTED_CONFIG_<CONFIG>"
>previous</a> |</li>
<li>
<img src="../_static/cmake-logo-16.png" alt=""
style="vertical-align: middle; margin-top: -2px" />
</li>
<li>
<a href="https://cmake.org/">CMake</a> »
</li>
<li>
<a href="../index.html">3.26.5 Documentation</a> »
</li>
<li class="nav-item nav-item-1"><a href="../manual/cmake-properties.7.html" >cmake-properties(7)</a> »</li>
<li class="nav-item nav-item-this"><a href="">MSVC_DEBUG_INFORMATION_FORMAT</a></li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2000-2023 Kitware, Inc. and Contributors.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 5.0.2.
</div>
</body>
</html>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists