#ifndef SIBS_ENV_HPP #define SIBS_ENV_HPP #if defined(_WIN32) || defined(_WIN64) #if defined(_WIN64) #define CISB_ENV_64BIT #else #define CISB_ENV_32BIT #endif #endif #if defined(__GNUC__) #if defined(__x86_64__) || defined(__pc64__) #define CISB_ENV_64BIT #else #define CISB_ENV_32BIT #endif #endif #if !defined(CISB_ENV_32BIT) && !defined(CISB_ENV_64BIT) #error "System is not detected as either 32-bit or 64-bit" #endif #endif // SIBS_ENV_HPP