[QBS] Scanner with custom FileTags not executed

2016-10-29 Thread at-2500
Hey, is it possible that Scanners right now don’t work with custom filetags? Further explanation of what I mean: 1. Create a Module in your project folder qbs/modules/test/module.qbs 2. Add a FileTagger for *.txt with the filetag „txt“ to the module.qbs 3. Add a Scanner item with inputs: „txt“ a

[QBS] systemIncludePaths not forwarded to moc

2015-06-08 Thread at-2500
Hey all, I am not sure, but I think I found a bug in the Qt modules for QBS: cpp.systemIncludePaths are not added to moc via -I, only cpp.includePaths. Is that intended behavior, or a bug? If you depend on another Qt project that defines a Q_INTERFACE, the depending projects moc needs that. Wit

[QBS] Qt Plugin with QBS

2015-03-16 Thread at-2500
Hi, I am trying to set up a project using the Qt Plugin System. The project consists of multiple binaries, one dynamic library that defines the Q_INTERFACE (LIB) and multiple plugins (PLUGIN) implementing this interface. To have common unit tests for all plugins, I have a gtest-based binary tha

[QBS] Qt, QtCreator and cpp.systemIncludePaths

2014-07-23 Thread at-2500
Hi, I found that the Qt QBS module uses cpp.includePaths to add its include path to the compiler flags, while it should use cpp.systemIncludePaths. Why? Paths in cpp.systemIncludePaths are added to e.g. clang using -isystem/path/you/added (in gcc it uses the -I flag instead of -i). The system f