rename PIInit BuildOption

This commit is contained in:
Andrey
2022-01-14 18:51:37 +03:00
parent d4c6c410da
commit c9e329d27d
2 changed files with 24 additions and 24 deletions

View File

@@ -49,14 +49,14 @@ public:
//! @brief Build options which PIP library was built
enum BuildOption {
ICU /*! Unicode support */ = 0x01,
USB /*! USB support */ = 0x02,
Crypt /*! Crypt support */ = 0x08,
Introspection /*! Introspection */ = 0x010,
FFTW /*! FFTW3 support */ = 0x40,
Compress /*! Zlib compression support */ = 0x80,
OpenCL /*! OpenCL support */ = 0x100,
Cloud /*! Cloud transport support */ = 0x200,
boICU /*! Unicode support */ = 0x01,
boUSB /*! USB support */ = 0x02,
boCrypt /*! Crypt support */ = 0x08,
boIntrospection /*! Introspection */ = 0x010,
boFFTW /*! FFTW3 support */ = 0x40,
boCompress /*! Zlib compression support */ = 0x80,
boOpenCL /*! OpenCL support */ = 0x100,
boCloud /*! Cloud transport support */ = 0x200,
};
static PIInit * instance() {return __PIInit_Initializer__::__instance__;}
static bool isBuildOptionEnabled(BuildOption o);