Top Level Namespace

Defined Under Namespace

Modules: Ons

Constant Summary collapse

ALIYUN_MQ_CPP_SDK_DIR =

aliyun mq sdk dir

File.expand_path('../aliyun-mq-cpp-sdk', __FILE__)
HEADER_DIRS =

header dirs to search

[
  '/opt/local/include',           # search /opt/local for macports
  '/usr/local/include',           # search /usr/local for people that installed from source
  RbConfig::CONFIG['includedir'], # check the ruby install locations
  File.join(ALIYUN_MQ_CPP_SDK_DIR, 'include'),
  '/usr/include',                 # finally fall back to /usr
].freeze
LIB_DIRS =

library dirs to search

[
  '/opt/local/lib',               # search /opt/local for macports
  '/usr/local/lib',               # search /usr/local for people that installed from source
  RbConfig::CONFIG['libdir'],     # check the ruby install locations
  File.join(ALIYUN_MQ_CPP_SDK_DIR, 'lib'),
  '/usr/lib',                     # finally fall back to /usr
].freeze