https://github.com/root-project/root
Raw File
Tip revision: 2300fd76503a24c4381236968cead648b52fb3aa authored by Danilo Piparo on 13 October 2023, 09:32:17 UTC
"Update ROOT version files to v6.28/08."
Tip revision: 2300fd7
RConfigure.in
#ifndef ROOT_RConfigure
#define ROOT_RConfigure

/* Configurations file for @architecture@ */

#cmakedefine R__HAVE_CONFIG

#ifdef R__HAVE_CONFIG
#define ROOTPREFIX    "@prefix@"
#define ROOTBINDIR    "@bindir@"
#define ROOTLIBDIR    "@libdir@"
#define ROOTINCDIR    "@incdir@"
#define ROOTETCDIR    "@etcdir@"
#define ROOTDATADIR   "@datadir@"
#define ROOTDOCDIR    "@docdir@"
#define ROOTMACRODIR  "@macrodir@"
#define ROOTTUTDIR    "@tutdir@"
#define ROOTSRCDIR    "@srcdir@"
#define ROOTICONPATH  "@iconpath@"
#define TTFFONTDIR    "@ttffontdir@"
#endif

#define EXTRAICONPATH "@extraiconpath@"

#define ROOT__cplusplus @__cplusplus@
#if defined(__cplusplus) && (__cplusplus != ROOT__cplusplus)
# if defined(_MSC_VER)
#  pragma message("The C++ standard in this build does not match ROOT configuration (@__cplusplus@); this might cause unexpected issues. And please make sure you are using the -Zc:__cplusplus compilation flag")
# else
#  warning "The C++ standard in this build does not match ROOT configuration (@__cplusplus@); this might cause unexpected issues"
# endif
#endif

#@setresuid@ R__HAS_SETRESUID   /**/
#@hasmathmore@ R__HAS_MATHMORE   /**/
#@haspthread@ R__HAS_PTHREAD    /**/
#@hascuda@ R__HAS_CUDA    /**/
#@hasxft@ R__HAS_XFT    /**/
#@hascocoa@ R__HAS_COCOA    /**/
#@hasvc@ R__HAS_VC    /**/
#@hasvdt@ R__HAS_VDT    /**/
#@hasveccore@ R__HAS_VECCORE    /**/
#@usecxxmodules@ R__USE_CXXMODULES   /**/
#@uselibc++@ R__USE_LIBCXX    /**/
#@hasstdstringview@ R__HAS_STD_STRING_VIEW   /**/
#@cudahasstdstringview@ R__CUDA_HAS_STD_STRING_VIEW   /**/
#@hasstdexpstringview@ R__HAS_STD_EXPERIMENTAL_STRING_VIEW   /**/
#@hasstodstringview@ R__HAS_STOD_STRING_VIEW /**/
#@hasopplusequalstringview@ R__HAS_OP_EQUAL_PLUS_STRING_VIEW /**/
#@hasstdapply@ R__HAS_STD_APPLY /**/
#@hasstdinvoke@ R__HAS_STD_INVOKE /**/
#@hasstdindexsequence@ R__HAS_STD_INDEX_SEQUENCE /**/
#@has_found_attribute_always_inline@ R__HAS_ATTRIBUTE_ALWAYS_INLINE /**/
#@has_found_attribute_noinline@ R__HAS_ATTRIBUTE_NOINLINE /**/
#@hashardwareinterferencesize@ R__HAS_HARDWARE_INTERFERENCE_SIZE /**/
#@useimt@ R__USE_IMT   /**/
#@memory_term@ R__COMPLETE_MEM_TERMINATION /**/
#@hascefweb@ R__HAS_CEFWEB  /**/
#@hasqt5webengine@ R__HAS_QT5WEB  /**/
#@hasdavix@ R__HAS_DAVIX  /**/
#@hasdataframe@ R__HAS_DATAFRAME /**/
#@use_less_includes@ R__LESS_INCLUDES /**/
#@hastbb@ R__HAS_TBB /**/
#@hasroofit_multiprocess@ R__HAS_ROOFIT_MULTIPROCESS /**/

#if defined(R__HAS_VECCORE) && defined(R__HAS_VC)
#ifndef VECCORE_ENABLE_VC
#define VECCORE_ENABLE_VC
#endif
#endif

#@uselz4@ R__HAS_DEFAULT_LZ4  /**/
#@usezlib@ R__HAS_DEFAULT_ZLIB  /**/
#@uselzma@ R__HAS_DEFAULT_LZMA  /**/
#@usezstd@ R__HAS_DEFAULT_ZSTD  /**/
#@usecloudflarezlib@ R__HAS_CLOUDFLARE_ZLIB /**/

#@hastmvacpu@ R__HAS_TMVACPU /**/
#@hastmvagpu@ R__HAS_TMVAGPU /**/
#@hastmvacudnn@ R__HAS_CUDNN /**/
#@haspymva@ R__HAS_PYMVA /**/
#@hasrmva@ R__HAS_RMVA /**/

#@hasuring@ R__HAS_URING /**/

#endif
back to top