44 lines
1004 B
QML
44 lines
1004 B
QML
|
|
/*!
|
|||
|
|
\qmltype cpp-opds
|
|||
|
|
\inherits Project
|
|||
|
|
\brief Описание
|
|||
|
|
*/
|
|||
|
|
PSLibrary {
|
|||
|
|
cpp.defines: [
|
|||
|
|
// You can make your code fail to compile if it uses deprecated APIs.
|
|||
|
|
// In order to do so, uncomment the following line.
|
|||
|
|
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
|||
|
|
"DATABASE_SQLITE",
|
|||
|
|
"MODEL_LIBRARY"
|
|||
|
|
]
|
|||
|
|
consoleApplication: true
|
|||
|
|
|
|||
|
|
Depends { name: "Qt"; submodules: [ "core", "network" ] }
|
|||
|
|
Depends { name: "cpp" }
|
|||
|
|
|
|||
|
|
Depends { name: "odb.gen" }
|
|||
|
|
Depends { name: "rdbase" }
|
|||
|
|
|
|||
|
|
Depends { name: "redkit_gen" }
|
|||
|
|
redkit_gen.includeModules: ["JsonSerializer"]
|
|||
|
|
|
|||
|
|
odb.gen.databases: "sqlite"
|
|||
|
|
cpp.cxxLanguageVersion: "c++17"
|
|||
|
|
|
|||
|
|
Group {
|
|||
|
|
id: odbs
|
|||
|
|
name: "odb"
|
|||
|
|
files: [
|
|||
|
|
"**/*.h",
|
|||
|
|
]
|
|||
|
|
fileTags: ["hpp", "odbxx", "rgen"]
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
cpp.dynamicLibraries: [
|
|||
|
|
"odb-sqlite",
|
|||
|
|
"odb-qt",
|
|||
|
|
"odb",
|
|||
|
|
"sqlite3"
|
|||
|
|
]
|
|||
|
|
}
|