Skip to content

Instantly share code, notes, and snippets.

@drewish
Created September 11, 2012 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewish/3696754 to your computer and use it in GitHub Desktop.
Save drewish/3696754 to your computer and use it in GitHub Desktop.
gyp support for exiv2node
{
'targets': [
{
'target_name': 'exiv2',
'sources': [
'exiv2node.cc'
],
'xcode_settings': {
'OTHER_CFLAGS': [
'<!@(pkg-config --cflags exiv2)',
'-fcxx-exceptions'
],
},
'cflags': [
'<!@(pkg-config --cflags exiv2)'
],
'libraries': [
'<!@(pkg-config --libs exiv2)'
],
'ldflags': [
'<!@(pkg-config --libs exiv2)'
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment