diff options
Diffstat (limited to 'kate/plugins/isearch/Makefile.am')
-rw-r--r-- | kate/plugins/isearch/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kate/plugins/isearch/Makefile.am b/kate/plugins/isearch/Makefile.am new file mode 100644 index 000000000..70327218e --- /dev/null +++ b/kate/plugins/isearch/Makefile.am @@ -0,0 +1,18 @@ +INCLUDES = -I$(top_srcdir)/interfaces $(all_includes) +METASOURCES = AUTO + +# Install this plugin in the KDE modules directory +kde_module_LTLIBRARIES = ktexteditor_isearch.la + +ktexteditor_isearch_la_SOURCES = ISearchPlugin.cpp +ktexteditor_isearch_la_LIBADD = $(top_builddir)/interfaces/ktexteditor/libktexteditor.la +ktexteditor_isearch_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) + +isearchdatadir = $(kde_datadir)/ktexteditor_isearch +isearchdata_DATA = ktexteditor_isearchui.rc + +kde_services_DATA = ktexteditor_isearch.desktop + +messages: rc.cpp + $(XGETTEXT) *.cpp *.h -o $(podir)/ktexteditor_isearch.pot + |