• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<idea-plugin>
2    <id>com.sk.gn</id>
3    <name>Gn Generate</name>
4    <version>1.0.1</version>
5    <vendor email="zhaojunxia@kaihong.com" url="http://kaihong.com/">深圳开鸿数字产业发展有限公司</vendor>
6
7    <description><![CDATA[
8        <h2>Introduction</h2>
9        <p>&nbsp;&nbsp;&nbsp;&nbsp;The current OpenHarmony 3.1Release and later versions use bundle.json to integrate subsystem code. However, some libraries are integrated as cmakelists.txt, which cannot be integrated into OpenHarmony source code. You need to compile the library to a build.gn file, and then use the generated GN script to integrate the library into OpenHarmony.<br/></p>
10        <p><a href="https://gitee.com/zhaojunxia2020/napi_generator_0824/">Sources on Gitee</a></p>
11        ]]>
12  </description>
13
14    <idea-version since-build="113.0"/>
15    <depends>com.intellij.modules.lang</depends>
16
17    <extensions defaultExtensionNs="com.intellij">
18    </extensions>
19
20    <actions>
21        <!-- Add your actions here -->
22        <action id="Gn.gen" class="com.sk.gn.ng.GnDTS" text="Gn Generate Frame">
23            <add-to-group group-id="ProjectViewPopupMenu" anchor="first"/>
24        </action>
25
26        <group id="Gn.menuGen" text="Generate Gn" >
27            <add-to-group group-id="ToolsMenu" anchor="last" />
28        </group>
29
30        <action class="com.sk.gn.ng.GnMenuDTS" id="gnToolsGen" text="Gn Generate Frame">
31            <add-to-group group-id="Gn.menuGen" anchor="last" />
32            <keyboard-shortcut keymap="$default" first-keystroke="shift alt E"/>
33        </action>
34
35    </actions>
36
37</idea-plugin>