garrynewman / GWEN

Abandoned: GWEN - GUI Without Extravagant Nonsense.
MIT License
427 stars 102 forks source link

Premake script fix to enable multi-processor compilation for Visual Studio #99

Closed DeeKayHT closed 8 years ago

DeeKayHT commented 9 years ago

Apparently the Visual Studio solution generated by premake was not building with multiple cores despite the script adding the /MP flag. This was due to the /Gm (Minimal Rebuild) flag still being enabled. With the flag now disabled in the premake script, the generated Visual Studio solution can now properly build with multiple cores.