summaryrefslogtreecommitdiff
path: root/deps/http_parser
diff options
context:
space:
mode:
authorPeter Bright <drpizza@quiscalusmexicanus.org>2011-08-07 06:11:21 +0100
committerRyan Dahl <ry@tinyclouds.org>2011-08-06 22:39:28 -0700
commit6ac8c559897ae09a4f9e84cda1e90e6c56ca92bf (patch)
tree42d519afd24dd0bc8512dbee7c6af54583630c43 /deps/http_parser
parentb88c48177a5301cfabbb3d0790187d3b6dacdbda (diff)
downloadandroid-node-v8-6ac8c559897ae09a4f9e84cda1e90e6c56ca92bf.tar.gz
android-node-v8-6ac8c559897ae09a4f9e84cda1e90e6c56ca92bf.tar.bz2
android-node-v8-6ac8c559897ae09a4f9e84cda1e90e6c56ca92bf.zip
Make MSVS build.
MSVS settings don't actually need to be guarded by conditions. gyp will do the right thing.
Diffstat (limited to 'deps/http_parser')
-rw-r--r--deps/http_parser/http_parser.gyp35
1 files changed, 32 insertions, 3 deletions
diff --git a/deps/http_parser/http_parser.gyp b/deps/http_parser/http_parser.gyp
index e9183b8d55..c6eada707f 100644
--- a/deps/http_parser/http_parser.gyp
+++ b/deps/http_parser/http_parser.gyp
@@ -6,14 +6,43 @@
# ./out/Debug/test
{
'target_defaults': {
+ 'default_configuration': 'Debug',
'configurations': {
+ # TODO: hoist these out and put them somewhere common, because
+ # RuntimeLibrary MUST MATCH across the entire project
'Debug': {
- 'defines': [ 'DEBUG', '_DEBUG' ]
+ 'defines': [ 'DEBUG', '_DEBUG' ],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'RuntimeLibrary': 1, # static debug
+ },
+ },
},
'Release': {
- 'defines': [ 'NDEBUG' ]
+ 'defines': [ 'NDEBUG' ],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'RuntimeLibrary': 0, # static release
+ },
+ },
}
- }
+ },
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ },
+ 'VCLibrarianTool': {
+ },
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'true',
+ },
+ },
+ 'conditions': [
+ ['OS == "win"', {
+ 'defines': [
+ 'WIN32'
+ ],
+ }]
+ ],
},
'targets': [