tests/test_get_configs_list
tests/test_get_tree
tests/test_add_config
-tests/test_add_config_from_confi
tests/test_set_config
+tools/add_config_from_confi
*.csv
gtk-doc.m4
*.gir
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
-SUBDIRS = src plugins tests data docs
+SUBDIRS = src plugins tools tests data docs
EXTRA_DIST = libzakconfi.pc.in
plugins/db/Makefile
plugins/file/Makefile
tests/Makefile
+ tools/Makefile
data/Makefile
docs/Makefile
docs/reference/Makefile
noinst_PROGRAMS = test \
test_add_config \
- test_add_config_from_confi \
test_get_configs_list \
test_get_tree \
test_set_config
+++ /dev/null
-/*
- * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#include <glib/gprintf.h>
-#include <libpeas/peas.h>
-
-#include "libzakconfi.h"
-
-int
-main (int argc, char **argv)
-{
- PeasEngine *engine;
-
- ZakConfi *confi;
-
- if (argc < 5)
- {
- g_error ("Usage: test_add_config <connection string source> <connection string destination> <config name> <config description>");
- return 0;
- }
-
- engine = peas_engine_get_default ();
- peas_engine_add_search_path (engine, PLUGINSDIR, NULL);
-
- confi = zak_confi_new (argv[1]);
-
- if (zak_confi_add_config_from_confi (confi, argv[2], argv[3], argv[4]) == NULL)
- {
- g_warning ("Config %s not created.", argv[2]);
- }
-
- return 0;
-}
--- /dev/null
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+ $(DISABLE_DEPRECATED_CFLAGS) \
+ $(LIBCONFI_CFLAGS) \
+ -I$(top_srcdir)/src \
+ -DPLUGINSDIR=\""$(libdir)/$(PACKAGE)/plugins"\"
+
+LIBS = $(LIBCONFI_LIBS) \
+ -L../src -lzakconfi \
+ -export-dynamic
+
+LDADD = $(top_builddir)/src/libzakconfi.la
+
+noinst_PROGRAMS = add_config_from_confi
--- /dev/null
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakconfi.h"
+
+int
+main (int argc, char **argv)
+{
+ PeasEngine *engine;
+
+ ZakConfi *confi;
+
+ if (argc < 5)
+ {
+ g_error ("Usage: add_config_from_confi <connection string source> <connection string destination> <config name> <config description>");
+ return 0;
+ }
+
+ engine = peas_engine_get_default ();
+ peas_engine_add_search_path (engine, PLUGINSDIR, NULL);
+
+ confi = zak_confi_new (argv[1]);
+
+ if (zak_confi_add_config_from_confi (confi, argv[2], argv[3], argv[4]) == NULL)
+ {
+ g_warning ("Config %s not created.", argv[2]);
+ }
+
+ return 0;
+}