-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make build work on latest versions of node
- bundle giflib with project - update to giflib 5.0.0 api - use bindings module to load bindings
- Loading branch information
1 parent
bf80483
commit 7457571
Showing
16 changed files
with
3,989 additions
and
77 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'gif', | ||
'sources': [ | ||
'src/animated_gif.cpp', | ||
'src/async_animated_gif.cpp', | ||
'src/buffer_compat.cpp', | ||
'src/common.cpp', | ||
'src/dynamic_gif_stack.cpp', | ||
'src/gif.cpp', | ||
'src/gif_encoder.cpp', | ||
'src/module.cpp', | ||
'src/palette.cpp', | ||
'src/quantize.cpp', | ||
'src/utils.cpp' | ||
], | ||
'dependencies': [ | ||
'<(module_root_dir)/deps/giflib/giflib.gyp:giflib' | ||
], | ||
'cflags_cc!': [ '-fno-exceptions' ], | ||
'conditions': [ | ||
['OS=="mac"', { | ||
'xcode_settings': { | ||
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES' | ||
} | ||
}] | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.