mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
This will avoid a ninja-build from picking up a config.h generated by the autotools build (in the root build directory). Picking up the wrong config.h may lead to all kinds of subtle issues if the autotools run was done with different options than the cmake run.
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
C++
/***************************************************************************
|
|
* test-load-backend.c
|
|
*
|
|
* Replaces the guile version to test the GModule file backend loading.
|
|
*
|
|
* Sun Oct 9 18:58:47 2005
|
|
* Copyright 2005 Neil Williams
|
|
* linux@codehelp.co.uk
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
extern "C"
|
|
{
|
|
#include <config.h>
|
|
#include "qof.h"
|
|
#include "cashobjects.h"
|
|
#include "test-stuff.h"
|
|
}
|
|
|
|
#define GNC_LIB_NAME "gncmod-backend-xml"
|
|
#define GNC_LIB_REL_PATH "xml"
|
|
|
|
int main (int argc, char** argv)
|
|
{
|
|
g_setenv ("GNC_UNINSTALLED", "1", TRUE);
|
|
qof_init ();
|
|
cashobjects_register ();
|
|
do_test (
|
|
qof_load_backend_library (GNC_LIB_REL_PATH, GNC_LIB_NAME),
|
|
" loading gnc-backend-xml GModule failed");
|
|
print_test_results ();
|
|
qof_close ();
|
|
exit (get_rv ());
|
|
}
|