https://github.com/JeffersonLab/chroma
Raw File
Tip revision: e01fca44b561b3196d35d4766256110b757b5913 authored by Balint Joo on 04 May 2018, 17:41:26 UTC
Updated License to 2018 Jefferson Lab License
Tip revision: e01fca4
chroma_config.h
#ifndef CHROMA_CONFIG_H
#define CHROMA_CONFIG_H

/* Undef the unwanted from the environment -- eg the compiler command line */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION

#include "chroma_config_internal.h"

/* Prefix everything with CHROMA_QDP_ */
static const char* const CHROMA_PACKAGE(PACKAGE);
static const char* const CHROMA_PACKAGE_BUGREPORT(PACKAGE_BUGREPORT);
static const char* const CHROMA_PACKAGE_NAME(PACKAGE_NAME);
static const char* const CHROMA_PACKAGE_STRING(PACKAGE_STRING);
static const char* const CHROMA_PACKAGE_TARNAME(PACKAGE_TARNAME);
static const char* const CHROMA_PACKAGE_VERSION(PACKAGE_VERSION);
static const char* const CHROMA_VERSION(VERSION);

/* Undef the unwanted */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION


#endif
back to top