BoomingTech / Piccolo

Piccolo (formerly Pilot) – mini game engine for games104
MIT License
5.69k stars 1.79k forks source link

Update CMakeLists.txt of JoltPhysics #462

Open AyiStar opened 9 months ago

AyiStar commented 9 months ago

Add /Wv:18 option to prevent warnings from newer vc version when building JoltPhysics.

AyiStar commented 9 months ago

我注意到 #390 和 #452 都提到了这个问题,但是并没有得到修正。直接去掉 JoltPhysics 的 /WX 选项过于粗暴,考虑到可能是项目所使用的 JoltPhysics 版本较旧的问题,在不改变此部分代码的前提下,一个比较温和的方式是在编译 JoltPhysics 的时候,通过 /Wv[:version] 选项关闭新版本MSVC引入的warning。 @ShenMian