R2Northstar / NorthstarLauncher

Launcher used to modify Titanfall 2 to allow mods to be loaded
MIT License
279 stars 127 forks source link

Lowercase all linked libraries for building on Linux #726

Closed Jan200101 closed 3 months ago

Jan200101 commented 3 months ago

Microsoft, in their infinite wisdom, decided to suffix some libraries with .Lib instead of .lib This causes issues with cmake on Linux because it only looks for .lib which it won't be able to resolve because the file system is case sensitive. Microsoft does this for backwards compatibility, in cmake this is a limitation so the best solution is to bite the bullet and lowercase all libraries which setups such as wine-msvc and xwin already do.