~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/plugin.am

Merge Joe, plus I updated the tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
 
# Copyright (C) 2010 David Shrewsbury
3
 
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; version 2 of the License.
7
 
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
 
 
17
 
 
18
 
if BUILD_TRANSACTION_LOG_PLUGIN
19
 
noinst_PROGRAMS += plugin/transaction_log/utilities/transaction_reader
20
 
endif
21
 
 
22
 
noinst_HEADERS += \
23
 
    plugin/transaction_log/utilities/transaction_file_reader.h \
24
 
    plugin/transaction_log/utilities/transaction_manager.h \
25
 
    plugin/transaction_log/utilities/transaction_log_connection.h
26
 
 
27
 
plugin_transaction_log_utilities_transaction_reader_SOURCES = \
28
 
    plugin/transaction_log/utilities/transaction_reader.cc \
29
 
    plugin/transaction_log/utilities/transaction_file_reader.cc \
30
 
    plugin/transaction_log/utilities/transaction_manager.cc \
31
 
    plugin/transaction_log/utilities/transaction_log_connection.cc
32
 
 
33
 
plugin_transaction_log_utilities_transaction_reader_LDADD = \
34
 
    $(top_builddir)/drizzled/message/libdrizzledmessage.la \
35
 
    ${top_builddir}/drizzled/internal/libinternal.la \
36
 
    ${top_builddir}/drizzled/algorithm/libhash.la \
37
 
    ${top_builddir}/drizzled/util/libutil.la \
38
 
    ${top_builddir}/libdrizzle/libdrizzle.la \
39
 
    ${LIBPROTOBUF} \
40
 
    ${LIBUUID} \
41
 
    ${LTLIBINTL} \
42
 
    $(GCOV_LIBS)
43
 
 
44
 
plugin_transaction_log_utilities_transaction_reader_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_WERROR}