config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Mon, 16 Feb 2009 01:32:12 +0200
changeset 5 e617c9cf6dd3
child 6 90073cbb535d
permissions -rw-r--r--
Updates to build system * off the source build * packaging * documentation * test


#ifndef LLM_CONFIG_H
#define LLM_CONFIG_H

// define this to enable debugging output
#cmakedefine DEBUG

#ifdef DEBUG
#include <stdio.h>
#define D(FORMAT...) { fprintf ( stderr, FORMAT ); }
#else
#define D(FORMAT...) { /* FORMAT */ }
#endif

#endif