Fix glad not building on BSD

Differential Revision: https://code.wildfiregames.com/D4781
This was SVN commit r27083.
This commit is contained in:
Stan 2022-09-01 20:44:49 +00:00
parent f2c80badbf
commit 6e8e6e986d

View File

@ -937,7 +937,12 @@ function setup_all_libs ()
setup_static_lib_project("lowlevel", source_dirs, extern_libs, extra_params)
setup_static_lib_project("gladwrapper", {}, { "glad" }, { no_pch = 1 })
extern_libs = { "glad" }
if not os.istarget("windows") and not _OPTIONS["android"] and not os.istarget("macosx") then
-- X11 should only be linked on *nix
table.insert(used_extern_libs, "x11")
end
setup_static_lib_project("gladwrapper", {}, used_extern_libs, { no_pch = 1 })
glad_path = libraries_source_dir.."glad/"
sysincludedirs { glad_path.."include" }
if _OPTIONS["gles"] then