Bug 1885565 - Part 1: Add mozac_ic_avatar_circle_24 to ui-icons r=android-reviewers...
[gecko.git] / docs / contributing / editors / others.rst
blobb753ff1042b7f827a678b0caf49c3c12ac69d015
1 Eclipse
2 =======
4 You can generate an Eclipse project by running:
6 .. code::
8     ./mach ide eclipse
10 See also the `Eclipse CDT <https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Eclipse/Eclipse_CDT>`__ docs on MDN.
12 Visual Studio
13 =============
15 You can run a Visual Studio project by running:
17 .. code::
19     ./mach ide visualstudio
21 .. _CompileDB back-end-compileflags:
23 CompileDB back-end / compileflags
24 =================================
26 You can generate a :code:`compile_commands.json` in your object directory by
27 running:
29 .. code::
31     ./mach build-backend --backend=CompileDB
33 This file, the compilation database, is understood by a variety of C++ editors / IDEs
34 to provide auto-completion capabilities. You can also get an individual compile command by
35 running:
37 .. code::
39     ./mach compileflags path/to/file
41 This is how the :ref:`VIM <VIM>` integration works, for example.