mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2024-12-28 01:00:40 +01:00
75d40806ed
* Add conan support * Windows Qbs port using conan * Correct QT_INSTALL_DIRECTORY define * Correct QT_INSTALL_DIRECTORY define, again
16 lines
265 B
QML
16 lines
265 B
QML
import qbs
|
|
|
|
Pdf4QtPlugin {
|
|
name: "AudioBookPlugin"
|
|
files: [
|
|
"*.h",
|
|
"*.cpp",
|
|
"*.ui",
|
|
"icons.qrc",
|
|
]
|
|
Properties {
|
|
condition: qbs.hostOS.contains("windows")
|
|
cpp.defines: "AUDIOBOOKPLUGIN_LIBRARY"
|
|
}
|
|
}
|