blob: 9d42f3b66327952d12de1bffec9256f16f1918a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
echo "Creating $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.rc...";
cat << EOF > $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.rc
<!DOCTYPE kpartgui>
<kpartplugin name="${APP_NAME_LC}" library="lib${APP_NAME_LC}plugin" version="1">
<MenuBar>
<Menu name="tools"><Text>&Tools</Text>
<Action name="plugin_action"/>
</Menu>
</MenuBar>
<ToolBar name="extraToolBar">
<Action name="plugin_action"/>
</ToolBar>
</kpartplugin>
|