You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
437 B
18 lines
437 B
12 years ago
|
QT = core
|
||
|
|
||
|
QMAKE_DOCS = $$PWD/doc/qtserialport.qdocconf
|
||
|
include($$PWD/serialport-lib.pri)
|
||
|
|
||
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
||
|
load(qt_build_config)
|
||
|
QT += core-private
|
||
|
TARGET = QtSerialPort
|
||
|
load(qt_module)
|
||
|
} else {
|
||
|
TEMPLATE = lib
|
||
|
TARGET = $$qtLibraryTarget(QtSerialPort$$QT_LIBINFIX)
|
||
|
include($$PWD/qt4support/install-helper.pri)
|
||
|
CONFIG += module create_prl
|
||
|
mac:QMAKE_FRAMEWORK_BUNDLE_NAME = $$TARGET
|
||
|
}
|