forked from qt-creator/qt-creator
Fix compilation with qbs on non-Linux, non-Mac Unix-like systems.
Change-Id: I075585d43f9e36a50c1945b3da4769744faa3f95 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
committed by
Joerg Bornemann
parent
8eaf5bc6ea
commit
f0c797256e
@@ -15,7 +15,7 @@ QtcLibrary {
|
||||
]
|
||||
}
|
||||
Properties {
|
||||
condition: qbs.targetOS == "linux"
|
||||
condition: qbs.targetPlatform.indexOf("unix") != -1 && qbs.targetOS != "mac"
|
||||
cpp.dynamicLibraries: ["X11"]
|
||||
}
|
||||
|
||||
@@ -205,7 +205,7 @@ QtcLibrary {
|
||||
}
|
||||
|
||||
Group {
|
||||
condition: qbs.targetOS == "linux" || qbs.targetOS == "mac"
|
||||
condition: qbs.targetPlatform.indexOf("unix") != -1
|
||||
files: [
|
||||
"consoleprocess_unix.cpp",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user