DaemonEngine / crunch

Advanced DXTc texture compression and transcoding library and tool, upgraded with Unity improvements, added features, extended system and hardware support, deeply tested.
https://github.com/DaemonEngine/crunch
Other
16 stars 6 forks source link

cmake: enable /MP and /W4 on MSVC #50

Closed illwieckz closed 5 months ago

illwieckz commented 5 months ago

Enable /MP and /W4 on MSVC.

illwieckz commented 5 months ago

It's a bad idea to enable /Wall, it expands the MSVC build time from 2 min 30 to 8 min 30… Probably just because of the time it spends to prints all the warning lines… It's longer than a full Dæmon engine build!

And this is for only one job, there are two of them…

illwieckz commented 5 months ago

I implemented /W4 instead of /Wall.

illwieckz commented 5 months ago

Closed in favor of: