Skip to content

Commit

Permalink
Add treebrowser plugin to the geany-plugins, for now only for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Mar 17, 2010
1 parent e99f73d commit b180c4a
Show file tree
Hide file tree
Showing 12 changed files with 872 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile.am
Expand Up @@ -12,7 +12,8 @@ plugins = \
geanyvc \
pretty-printer \
shiftcolumn \
spellcheck
spellcheck \
treebrowser

ACLOCAL_AMFLAGS = -I build/cache -I build --install

Expand Down
8 changes: 8 additions & 0 deletions build/treebrowser.m4
@@ -0,0 +1,8 @@
AC_DEFUN([GP_CHECK_TREEBROWSER],
[
GP_STATUS_PLUGIN_ADD([Treebrowser], [yes])
AC_CONFIG_FILES([
treebrowser/Makefile
treebrowser/src/Makefile
])
])
1 change: 1 addition & 0 deletions configure.ac
Expand Up @@ -35,6 +35,7 @@ GP_CHECK_GEANYVC
GP_CHECK_PRETTYPRINTER
GP_CHECK_SHIFTCOLUMN
GP_CHECK_SPELLCHECK
GP_CHECK_TREEBROWSER

AC_CONFIG_FILES([
Makefile
Expand Down
Empty file added treebrowser/AUTHORS
Empty file.
Empty file added treebrowser/COPYING
Empty file.
Empty file added treebrowser/ChangeLog
Empty file.
4 changes: 4 additions & 0 deletions treebrowser/Makefile.am
@@ -0,0 +1,4 @@
include $(top_srcdir)/build/vars.auxfiles.mk

SUBDIRS = src
plugin = treebrowser
Empty file added treebrowser/NEWS
Empty file.
Empty file added treebrowser/README
Empty file.
5 changes: 5 additions & 0 deletions treebrowser/src/Makefile.am
@@ -0,0 +1,5 @@
include $(top_srcdir)/build/vars.build.mk

geanyplugins_LTLIBRARIES = treebrowser.la
treebrowser_la_SOURCES = treebrowser.c
treebrowser_la_LIBADD = $(COMMONLIBS)

0 comments on commit b180c4a

Please sign in to comment.