robotology / blocktest

Test system for generic robot middlewares
GNU Lesser General Public License v3.0
8 stars 2 forks source link

Add option for disabling windows compilation warn #41

Closed Nicogene closed 3 years ago

Nicogene commented 3 years ago

It fixes #40

traversaro commented 3 years ago

Ok for me, but consider that the /Wall option is not recommended by MSVC documentation them-self, see https://docs.microsoft.com/en-us/previous-versions/thxezb7y(v=vs.140)?redirectedfrom=MSDN. The recommended setting is /W4, not /Wall. For example, one problem is that Wall also generate warnings by just including the standard headers (see https://stackoverflow.com/questions/4001736/whats-up-with-the-thousands-of-warnings-in-standard-headers-in-msvc-wall).