You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
437 B
14 lines
437 B
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>
|