mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
18 lines
520 B
Plaintext
18 lines
520 B
Plaintext
defineReplace(qextLibraryName) {
|
|
unset(LIBRARY_NAME)
|
|
LIBRARY_NAME = $$1
|
|
greaterThan(QT_MAJOR_VERSION, 4):LIBRARY_NAME ~= s,^Qt,Qt$$QT_MAJOR_VERSION,
|
|
CONFIG(debug, debug|release) {
|
|
!debug_and_release|build_pass {
|
|
mac:LIBRARY_NAME = $${LIBRARY_NAME}_debug
|
|
else:win32:LIBRARY_NAME = $${LIBRARY_NAME}d
|
|
}
|
|
}
|
|
return($$LIBRARY_NAME)
|
|
}
|
|
|
|
LIBS += -framework qextserialport
|
|
INCLUDEPATH += /Library/Frameworks/qextserialport.framework/Headers
|
|
|
|
DEFINES += QEXTSERIALPORT_USING_SHARED
|