{
    'target_defaults': {
        'default_configuration': 'Release',
        'configurations': {
            'Debug': {
                'msvs_settings': {
                    'VCCLCompilerTool': {
                        'ExceptionHandling': 1, # /EHsc,
                        'RuntimeLibrary': '3', # /MDd
                    }
                }
		    },
            'Release': {
                'msvs_settings': {
                    'VCCLCompilerTool': {
                        'ExceptionHandling': 1, # /EHsc,
                        'RuntimeLibrary': '2', # /MD
                    }
                }
            }
        }
    }
}