mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00

Markers were getting created in the code (with calls to CompileCommandsJsonParser.createMarker) but were not rendered in the UI because there was no declaration. Change-Id: I571b6ad7bb6f2b78a7b920cdf74ff89d6790d717
24 lines
858 B
XML
24 lines
858 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?eclipse version="3.4"?>
|
|
<plugin>
|
|
<extension-point id="detectionParticipant" name="%extension-point.name" schema="schema/participant.exsd"/>
|
|
"org.eclipse.cdt.cmake.is.core.internal.ui.CompileCommandsJsonParserOptionPage">
|
|
<extension
|
|
point="org.eclipse.cdt.core.CBuildConsole">
|
|
<CBuildConsole
|
|
class="org.eclipse.cdt.cmake.is.core.internal.builtins.DetectorConsole"
|
|
id="org.eclipse.cdt.cmake.is.core.detectorConsole">
|
|
</CBuildConsole>
|
|
</extension>
|
|
<extension
|
|
id="CompileCommandsJsonParserMarker"
|
|
name="CMake compile_commands.json parser"
|
|
point="org.eclipse.core.resources.markers">
|
|
<persistent
|
|
value="false">
|
|
</persistent>
|
|
<super
|
|
type="org.eclipse.core.resources.problemmarker">
|
|
</super>
|
|
</extension>
|
|
</plugin>
|