Update of /cvsroot/compbench/CompBenchmarks++
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18688
Added Files:
libcompbenchmarks.cpp libcompbenchmarks.h
Log Message:
First import.
--- NEW FILE: libcompbenchmarks.h ---
/* ----------------------------------------------------------------------------
$Id: libcompbenchmarks.h,v 1.1 2006/11/01 13:20:05 xfred Exp $
This is free software.
For details, see the GNU Public License in the COPYING file, or
Look http://www.fsf.org
------------------------------------------------------------------------- */
#ifndef H_CBMLIBCOMPBENCHMARKS
#define H_CBMLIBCOMPBENCHMARKS 1
#include <config.h>
#ifdef CBM_SYSTEM_LINUX
# include <System/System-Linux.h>
#endif
#ifdef CBM_SYSTEM_CYGWIN
# include <System/System-Cygwin.h>
#endif
#ifdef CBM_SYSTEM_FREEBSD
# include <System/System-FreeBSD.h>
#endif
/** Defines version of the libcompbenchmarks library */
extern char *libcompbenchmarks_version;
/** User option defining if package's test suite has to be run */
extern int UO_enableTestSuite;
/** User option defining 'force' mode */
extern int UO_force;
#endif
--- NEW FILE: libcompbenchmarks.cpp ---
#include <libcompbenchmarks.h>
char *libcompbenchmarks_version = VERSION;
int UO_enableTestSuite = 1;
int UO_force = 0;
|