in the project qbs look for:
of.linkerFlags: []
and change it to:
of.linkerFlags: [
'-lflycapture'
]
except for the flags in that section which are overriden by the of config you can also use any of the flags in the cpp module of qbs:
http://doc.qt.io/qbs/cpp-module.html
so you could also do:
cpp.staticLibraries = [
'flycapture'
]
the values are just javascript arrays