Added _CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE to MSVC projectfiles, to make warnings in Bullet more visible. This deals with most COLLADA_DOM/libxml issues.

This commit is contained in:
erwin.coumans
2008-05-10 18:43:09 +00:00
parent bd97c5e569
commit e334254a7b

View File

@@ -179,18 +179,18 @@ builds = [
projtypes = {
appcon =>
{
defines = ['_CONSOLE']
defines = ['_CONSOLE','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE']
},
appgui =>
{
defines = ['_WINDOWS']
defines = ['_WINDOWS','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE']
},
group =>
{
},
library =>
{
defines = ['_LIB', '_WINDOWS']
defines = ['_LIB', '_WINDOWS','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE']
}
};