Skip to content

Commit

Permalink
Expose libuv's symbols.
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Oct 28, 2013
1 parent 45f864d commit df919a4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions common.gypi
Expand Up @@ -63,6 +63,16 @@
'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO'
},
}],
['_target_name=="libuv"', {
'conditions': [
['OS=="win"', {
# Expose libuv's symbols.
'defines': [
'BUILDING_UV_SHARED=1',
],
}], # OS=="win"
],
}],
],
'msvs_cygwin_shell': 0, # Strangely setting it to 1 would make building under cygwin fail.
'msvs_disabled_warnings': [
Expand Down

1 comment on commit df919a4

@zcbenz
Copy link
Member Author

@zcbenz zcbenz commented on df919a4 Oct 28, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixed the link error in atom/node-pathwatcher#1.

Please sign in to comment.