mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
Change libpath of freetype on windows
* Make libpath of freetype libraries consistent with sdl2 libpath (/lib/arch) * Remove trailing whitespaces in freetype.lua
This commit is contained in:
parent
afb0a69264
commit
26ab35dab1
|
@ -29,9 +29,9 @@ FreeType = {
|
|||
elseif option.use_winlib > 0 then
|
||||
settings.cc.includes:Add(FreeType.basepath .. "/include")
|
||||
if option.use_winlib == 32 then
|
||||
settings.link.libpath:Add(FreeType.basepath .. "/lib32")
|
||||
settings.link.libpath:Add(FreeType.basepath .. "/lib/x86")
|
||||
else
|
||||
settings.link.libpath:Add(FreeType.basepath .. "/lib64")
|
||||
settings.link.libpath:Add(FreeType.basepath .. "/lib/x64")
|
||||
end
|
||||
settings.link.libs:Add("freetype")
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue