File: CMAKE_EXPORT_BUILD_DATABASE.rst

package info (click to toggle)
cmake 3.31.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 142,992 kB
  • sloc: ansic: 393,437; cpp: 288,767; sh: 3,958; yacc: 3,240; python: 3,015; lex: 1,337; asm: 438; f90: 429; lisp: 375; cs: 270; java: 266; perl: 217; objc: 212; xml: 198; fortran: 137; makefile: 96; javascript: 83; pascal: 63; tcl: 55; php: 25; ruby: 22
file content (86 lines) | stat: -rw-r--r-- 2,799 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
CMAKE_EXPORT_BUILD_DATABASE
---------------------------

.. versionadded:: 3.31

.. note ::

   This variable is meaningful only when experimental support for build
   databases has been enabled by the
   ``CMAKE_EXPERIMENTAL_EXPORT_BUILD_DATABASE`` gate.

Enable/Disable output of module compile commands during the build.

If enabled, generates a ``build_database.json`` file containing the
information necessary to compile a target's C++ module sources with any
tooling. The format of the JSON file looks like:

.. code-block:: javascript

  {
    "version": 1,
    "revision": 0,
    "sets": [
      {
        "family-name" : "export_build_database",
        "name" : "export_build_database@Debug",
        "translation-units" : [
          {
            "arguments": [
              "/path/to/compiler",
              "...",
            ],
            "baseline-arguments" :
            [
              "...",
            ],
            "local-arguments" :
            [
              "...",
            ],
            "object": "CMakeFiles/target.dir/source.cxx.o",
            "private": true,
            "provides": {
              "importable": "path/to/bmi"
            },
            "requires" : [],
            "source": "path/to/source.cxx",
            "work-directory": "/path/to/working/directory"
          }
        ],
        "visible-sets" : []
      }
    ]
  }

This is initialized by the :envvar:`CMAKE_EXPORT_BUILD_DATABASE` environment
variable, and initializes the :prop_tgt:`EXPORT_BUILD_DATABASE` target
property for all targets.

.. note::
  This option is implemented only by the :ref:`Ninja Generators`.  It is
  ignored on other generators.

When supported and enabled, numerous targets are created in order to make it
possible to build a file containing just the commands that are needed for the
tool in question.

``cmake_build_database-<CONFIG>``
  Writes ``build_database_<CONFIG>.json``. Writes a build database for the
  entire build for the given configuration and all languages. Not available if
  the configuration name is the empty string.

``cmake_build_database-<LANG>-<CONFIG>``
  Writes ``build_database_<LANG>_<CONFIG>.json``. Writes build database for
  the entire build for the given configuration and language. Not available if
  the configuration name is the empty string.

``cmake_build_database-<LANG>``
  Writes ``build_database_<LANG>.json``. Writes build database for the entire
  build for the given language and all configurations. In a multi-config
  generator, other build configuration database may be assumed to exist.

``cmake_build_database``
  Writes to ``build_database.json``. Writes build database for all languages
  and configurations. In a multi-config generator, other build configuration
  database may be assumed to exist.