1
1
forked from 0ad/0ad

Fixes spurious test of "unix" in Premake (prevented X11 from linking properly)

This was SVN commit r11109.
This commit is contained in:
historic_bruno 2012-02-20 23:58:59 +00:00
parent 0a42dcb01b
commit 489138ce3d

View File

@ -707,7 +707,7 @@ used_extern_libs = {
"valgrind",
}
if os.is("unix") and not _OPTIONS["android"] then
if not os.is("windows") and not _OPTIONS["android"] then
table.insert(used_extern_libs, "x11")
end