1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Read the zproject/README.md for information about making permanent changes. #
################################################################################
# GYP file for CZMQ Node.js binding
{
'targets': [
{
'target_name': 'czmq',
'sources': [
'binding.cc'
],
'include_dirs': [
"<!(node -e \"require('nan')\")",
'../../../libzmq/include',
'../../include'
],
'conditions': [
[ 'OS=="win"', {
'defines': [
'ZMQ_STATIC',
'CZMQ_STATIC'
],
'libraries': [
'ws2_32',
'advapi32',
'iphlpapi',
'Rpcrt4'
]
}],
[ 'OS=="mac"', {
}],
[ 'OS=="linux"', {
'xcode_settings': {
'OTHER_CFLAGS': [
'-fPIC'
],
},
'libraries': [
'-lpthread'
]
}],
],
'dependencies': [
'../../builds/gyp/project.gyp:libczmq'
]
}
]
}
|