0
すべての質問私はプロジェクトと一緒に簡単なqdocconfファイルを提供しましたが、qdocconfはプロジェクトのファイルプロパティにありますが、qbsはqdocを起動しません。qbsはqdocを起動しません
Project.qbs
import qbs
Project {
name: "LoggingMessageHandler"
Product {
files: [
"config.qdocconf",
"messagehandler.cpp",
]
name: "LoggingMessageHandler"
type: project.staticBuild ? "staticlibrary" : "dynamiclibrary"
Depends { name: "cpp" }
Depends { name: "Qt.core" }
cpp.cxxLanguageVersion: "c++11"
cpp.defines: [
"QT_DEPRECATED_WARNINGS",
"QT_DISABLE_DEPRECATED_BEFORE=0x060000"
]
Export {
Depends { name: "cpp" }
Depends { name: "Qt.core" }
cpp.includePaths: [product.sourceDirectory]
}
Group {
overrideTags: false
files: "*.qdocconf"
fileTags: "qdocconf-main"
}
Group {
name: "install include"
overrideTags: false
files: [
"messagehandler.h",
"LoggingMessageHandler"
]
qbs.install: project.installInclude
qbs.installDir: "/include"
}
}
}
config.qdocconf:
project = LoggingMessageHandler
description = A set of QMessageHandler function to be used with the Qt Logging framework.
depends += qtcore
outputdir = ./doc
headerdirs = .
sourcedirs = .
exampledirs = .
PS:project.installIncludeが高いプロジェクトから設定スイッチでありますファイル。
私は一度見ていきますが、QBSはqdocconf-mainファイルタグがあるときにdocルールをトリガーすると考えました。 –
ライブラリを生成するために、docを生成する必要はありません。これがqbsがqdocを呼び出さない理由です。 –