From 213b8a9e89acf2e591fb89f9c10401ac4e6a39f4 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 2 May 2019 22:37:06 -0400 Subject: [PATCH] adding in build config as asset --- .gitignore | 1 - nucleus/library/__build_configuration.h | 52 +++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 nucleus/library/__build_configuration.h diff --git a/.gitignore b/.gitignore index 60e170a5..022cb9f5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ *~ *# *.bak -__build_configuration.h *.class .DS_Store *.log diff --git a/nucleus/library/__build_configuration.h b/nucleus/library/__build_configuration.h new file mode 100644 index 00000000..8365bd25 --- /dev/null +++ b/nucleus/library/__build_configuration.h @@ -0,0 +1,52 @@ +#ifndef BUILD_SYSTEM_CONFIGURATION +#define BUILD_SYSTEM_CONFIGURATION + + // This file provides all of the code flags which were used when this build + // was generated. Some of the items in the build configuration have been + // stripped out because they are not used. + + #ifndef __build_company + #define __build_company "Feisty Meow Concerns" + #endif + #ifndef __build_copyright + #define __build_copyright "(C) 1987-$now Chris Koeritz & Others" + #endif + #ifndef __build_legal_info + #define __build_legal_info "This software is free to copy under the terms of the GNU GPL (or the GNU Library License if you prefer). See http://www.gnu.org/licenses/gpl.html for more info. We suggest peaceful purposes that help all sentient beings." + #endif + #ifndef __build_product_name + #define __build_product_name "feisty_meow" + #endif + #ifndef __build_web_site + #define __build_web_site "http://feistymeow.org" + #endif + #ifndef __build_LAX_DEPENDENCIES + #define __build_LAX_DEPENDENCIES "t" + #endif + #ifndef CATCH_ERRORS + #define CATCH_ERRORS "t" + #endif + #ifndef ERRORS_ARE_FATAL + #define ERRORS_ARE_FATAL "t" + #endif + +/* +These settings were not used: + [version] = + DEBUG = t + OPTIMIZE = t + ifneq "$(DEBUG)" "" = + OPTIMIZE = + endif = + ifeq "$(BOOT_STRAPPING)" "" = + endif = + ifneq "$(OP_SYSTEM)" "WIN32" = + endif = + ifeq "$(BOOT_STRAPPING)" "" = + endif = + ifeq "$(BOOT_STRAPPING)" "" = + endif = +*/ + +#endif /* outer guard */ + -- 2.34.1