IncludeProbe
Locates header files outside the project. More...
Inherits: |
- List of all members, including inherited members
- IncludeProbe is part of List of All Items.
Detailed Description
This is the convenience item that searches for files in "include" directories.
For example, IncludeProbe can be used to search for a zlib header as follows:
import qbs.Probes CppApplication { Probes.IncludeProbe { id: zlibProbe names: "zlib.h" } cpp.includePaths: zlibProbe.found ? [zlibProbe.path] : [] files: 'main.cpp' }
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.