changing sleep to dev dependency
This commit is contained in:
parent
701c7c0864
commit
0dd2712fdf
3 changed files with 35 additions and 47 deletions
37
binding.gyp
37
binding.gyp
|
|
@ -13,17 +13,34 @@
|
|||
"include_dirs": [
|
||||
"portaudio/include"
|
||||
],
|
||||
"libraries": [
|
||||
"libportaudio.dylib"
|
||||
],
|
||||
"copies": [
|
||||
{
|
||||
"destination": "build/Release/",
|
||||
"files": [
|
||||
"portaudio/bin/libportaudio.dylib"
|
||||
"conditions": [
|
||||
['OS=="mac"', {
|
||||
"libraries": [
|
||||
"libportaudio.dylib"
|
||||
],
|
||||
"copies": [
|
||||
{
|
||||
"destination": "build/Release",
|
||||
"files": [
|
||||
"portaudio/bin/libportaudio.dylib"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
}],
|
||||
['OS=="linux"', {
|
||||
"libraries": [
|
||||
"Release/libportaudio.so"
|
||||
],
|
||||
"copies": [
|
||||
{
|
||||
"destination": "build/Release",
|
||||
"files": [
|
||||
"portaudio/bin/libportaudio.so"
|
||||
]
|
||||
}
|
||||
]
|
||||
}],
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue