Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Build: Generate runtime info with Visual Studio
Browse files Browse the repository at this point in the history
The /GR tag has the same affect as the previous method of removing the
RunTimeInfo value in the binding.vcxproj
http://msdn.microsoft.com/en-us/library/we6hfdy0.aspx
  • Loading branch information
nschonni committed Jan 8, 2014
1 parent 13d63d8 commit ca801d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 23 deletions.
11 changes: 10 additions & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,16 @@
'GCC_ENABLE_CPP_RTTI': 'YES',
'MACOSX_DEPLOYMENT_TARGET': '10.7'
}
}]
}],
['OS=="win"', {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [
'/GR'
]
}
}
}]
]
}
]
Expand Down
11 changes: 0 additions & 11 deletions precompiled/win32-ia32/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions precompiled/win32-x64/README.md

This file was deleted.

1 comment on commit ca801d1

@springmeyer
Copy link

Choose a reason for hiding this comment

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

just learned you can also provide a common.gypi in node-sass to override: nodejs/node-gyp#330 (comment)

Please sign in to comment.