Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 1.12.2
-
Fix Version/s: 1.13.0
-
Component/s: Dependency Tracking
-
Labels:None
-
Environment:Linux Mint 18.3
-
Platform/s:
-
Commits:27d9bc85aa5eb2aa717fdc909cb2104cad0d3334 (qbs/qbs/1.13)
Description
The following code
cpp.includePaths: myLibraryLib.includePaths PkgConfigProbe { id: myLibraryLib name: "myLibrary" minVerison: "1.0.0" }
does not work. The problem is that PkgConfigProbe calls pkg-config with:
pkg-config --atleast-version=1.0.0 myLibrary --cflags
The parameter "atleast-version" and "cflags" are mutually exclusive.