Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New plugin 'workbench': initial commit. (Follow-up/clean PR) #601

Merged
merged 2 commits into from Sep 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile.am
Expand Up @@ -172,6 +172,10 @@ if ENABLE_WEBHELPER
SUBDIRS += webhelper
endif

if ENABLE_WORKBENCH
SUBDIRS += workbench
endif

if ENABLE_XMLSNIPPETS
SUBDIRS += xmlsnippets
endif
15 changes: 15 additions & 0 deletions build/workbench.m4
@@ -0,0 +1,15 @@
AC_DEFUN([GP_CHECK_WORKBENCH],
[
GP_ARG_DISABLE([Workbench], [auto])
GP_COMMIT_PLUGIN_STATUS([Workbench])
AC_CONFIG_FILES([
workbench/Makefile
workbench/src/Makefile
workbench/icons/Makefile
workbench/icons/16x16/Makefile
workbench/icons/24x24/Makefile
workbench/icons/32x32/Makefile
workbench/icons/48x48/Makefile
workbench/icons/scalable/Makefile
])
])
1 change: 1 addition & 0 deletions configure.ac
Expand Up @@ -71,6 +71,7 @@ GP_CHECK_TREEBROWSER
GP_CHECK_TABLECONVERT
GP_CHECK_UPDATECHECKER
GP_CHECK_WEBHELPER
GP_CHECK_WORKBENCH
GP_CHECK_XMLSNIPPETS

AC_CONFIG_FILES([
Expand Down
11 changes: 11 additions & 0 deletions po/POTFILES.in
Expand Up @@ -312,6 +312,17 @@ webhelper/src/gwh-utils.c
webhelper/src/gwh-browser.c
webhelper/src/gwh-plugin.c

# workbench
workbench/src/dialogs.c
workbench/src/menu.c
workbench/src/plugin_main.c
workbench/src/popup_menu.c
workbench/src/sidebar.c
workbench/src/utils.c
workbench/src/wb_globals.c
workbench/src/wb_project.c
workbench/src/workbench.c

# XMLSnippets
xmlsnippets/src/plugin.c
xmlsnippets/src/xmlsnippets.c
Expand Down