Created
September 11, 2012 07:51
-
-
Save drewish/3696754 to your computer and use it in GitHub Desktop.
gyp support for exiv2node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'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