From 7196d1e955cfc0655f8736ead0778835424610c0 Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Sun, 20 Oct 2024 17:10:29 -0400 Subject: [PATCH] v4.0.0-rc4 - add config parsing --- config.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config.h diff --git a/config.h b/config.h new file mode 100644 index 0000000..5de7fab --- /dev/null +++ b/config.h @@ -0,0 +1,27 @@ +/* + * config.h - Various compile-time settings for libglacier + * + * This file is part of Glacier. + * + * Glacier 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 3 of the License, or (at your option) any later version. + * + * Glacier 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 Glacier. If + * not, see . + */ + +#ifndef CONFIG_H_ +#define CONFIG_H_ + +/* LG_VERBOSE - whether to use verbose logging for library events or not + * + * 0 is false, 1 is true + */ +#define LG_VERBOSE 0 + +#endif