grim/gplate

trying to fix the path problem for templates in the include tests
/*
* GPlate - GObject based templating library
* Copyright (C) 2007-2012 Gary Kramlich <grim@reaperworld.com>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <glib.h>
#include <gplate.h>
#include "tags/test-gplate-tag.h"
gint
main(gint argc, gchar **argv) {
g_test_init(&argc, &argv, NULL);
g_type_init();
test_gplate_functions_add_tests();
test_gplate_tag_add_tests();
test_gplate_variables_add_tests();
return g_test_run();
}