UICodeEditor link hover improvements.

This commit is contained in:
Martín Lucas Golini
2022-03-16 20:10:51 -03:00
parent 153aeebcf7
commit 55e8a239ef
8 changed files with 130 additions and 42 deletions

View File

@@ -269,7 +269,7 @@ end
function generate_os_links()
if os.istarget("linux") then
multiple_insert( os_links, { "rt", "pthread", "X11", "GL", "Xcursor" } )
multiple_insert( os_links, { "rt", "pthread", "GL", "Xcursor" } )
if _OPTIONS["with-static-eepp"] then
table.insert( os_links, "dl" )
@@ -281,7 +281,7 @@ function generate_os_links()
elseif os.istarget("macosx") then
multiple_insert( os_links, { "OpenGL.framework", "CoreFoundation.framework" } )
elseif os.istarget("bsd") then
multiple_insert( os_links, { "rt", "pthread", "X11", "GL", "Xcursor" } )
multiple_insert( os_links, { "rt", "pthread", "GL" } )
elseif os.istarget("haiku") then
multiple_insert( os_links, { "GL", "network" } )
elseif os.istarget("ios") then