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>CMAKE_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="CMAKE_MSVC_RUNTIME_LIBRARY" href="CMAKE_MSVC_RUNTIME_LIBRARY.html" />
<link rel="prev" title="CMAKE_MODULE_LINKER_FLAGS_INIT" href="CMAKE_MODULE_LINKER_FLAGS_INIT.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="CMAKE_MSVC_RUNTIME_LIBRARY.html" title="CMAKE_MSVC_RUNTIME_LIBRARY"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="CMAKE_MODULE_LINKER_FLAGS_INIT.html" title="CMAKE_MODULE_LINKER_FLAGS_INIT"
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-variables.7.html" accesskey="U">cmake-variables(7)</a> »</li>
<li class="nav-item nav-item-this"><a href="">CMAKE_MSVC_DEBUG_INFORMATION_FORMAT</a></li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="cmake-msvc-debug-information-format">
<span id="variable:CMAKE_MSVC_DEBUG_INFORMATION_FORMAT"></span><h1>CMAKE_MSVC_DEBUG_INFORMATION_FORMAT<a class="headerlink" href="#cmake-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 the MSVC debug information format targeting the MSVC ABI.
This variable is used to initialize the
<span class="target" id="index-0-prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT"></span><a class="reference internal" href="../prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.html#prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT" title="MSVC_DEBUG_INFORMATION_FORMAT"><code class="xref cmake cmake-prop_tgt docutils literal notranslate"><span class="pre">MSVC_DEBUG_INFORMATION_FORMAT</span></code></a> property on all targets as they are
created. It is also propagated by calls to the <span class="target" id="index-0-command:try_compile"></span><a class="reference internal" href="../command/try_compile.html#command:try_compile" title="try_compile"><code class="xref cmake cmake-command docutils literal notranslate"><span class="pre">try_compile()</span></code></a> command
into the test project.</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">set(</span><span class="no">CMAKE_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 all following targets the program database debug information format
for the Debug configuration.</p>
<p>If this variable is not set, the <span class="target" id="index-1-prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT"></span><a class="reference internal" href="../prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.html#prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT" title="MSVC_DEBUG_INFORMATION_FORMAT"><code class="xref cmake cmake-prop_tgt docutils literal notranslate"><span class="pre">MSVC_DEBUG_INFORMATION_FORMAT</span></code></a>
target property will not be set automatically. If that 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 variable 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="CMAKE_MODULE_LINKER_FLAGS_INIT.html"
title="previous chapter">CMAKE_MODULE_LINKER_FLAGS_INIT</a></p>
</div>
<div>
<h4>Next topic</h4>
<p class="topless"><a href="CMAKE_MSVC_RUNTIME_LIBRARY.html"
title="next chapter">CMAKE_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/variable/CMAKE_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="CMAKE_MSVC_RUNTIME_LIBRARY.html" title="CMAKE_MSVC_RUNTIME_LIBRARY"
>next</a> |</li>
<li class="right" >
<a href="CMAKE_MODULE_LINKER_FLAGS_INIT.html" title="CMAKE_MODULE_LINKER_FLAGS_INIT"
>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-variables.7.html" >cmake-variables(7)</a> »</li>
<li class="nav-item nav-item-this"><a href="">CMAKE_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