mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Moving Quazip and QExtSerialPort to external libraries for mac and unix
This commit is contained in:
parent
1b2b7adef6
commit
edb7bc3690
2
3rdparty/3rdparty.pro
vendored
2
3rdparty/3rdparty.pro
vendored
@ -1,6 +1,6 @@
|
|||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
|
|
||||||
SUBDIRS = qextserialport quazip
|
SUBDIRS = quazip qextserialport
|
||||||
|
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
|
||||||
|
47
3rdparty/qextserialport/.gitignore
vendored
47
3rdparty/qextserialport/.gitignore
vendored
@ -1,47 +0,0 @@
|
|||||||
syntax: glob
|
|
||||||
*.pro.user*
|
|
||||||
*.app
|
|
||||||
*.moc
|
|
||||||
*.prl
|
|
||||||
Makefile*
|
|
||||||
doc/html/
|
|
||||||
*.framework/
|
|
||||||
*.xcodeproj/
|
|
||||||
debug/
|
|
||||||
release/
|
|
||||||
qtc-gdbmacros/
|
|
||||||
*.rej
|
|
||||||
*.orig
|
|
||||||
*.obj
|
|
||||||
*.swp
|
|
||||||
*.dll
|
|
||||||
*.exp
|
|
||||||
*.ilk
|
|
||||||
*.pdb
|
|
||||||
*.lib
|
|
||||||
Thumbs.db
|
|
||||||
moc_*.cpp
|
|
||||||
qrc_*.cpp
|
|
||||||
*.o
|
|
||||||
*.so.*
|
|
||||||
*.so
|
|
||||||
*.pdb
|
|
||||||
ui_*.h
|
|
||||||
*~
|
|
||||||
.qmake.cache
|
|
||||||
extserialport.prf
|
|
||||||
lib/*
|
|
||||||
*.orig
|
|
||||||
*.exe
|
|
||||||
*.vcproj
|
|
||||||
*.vcproj.*.user
|
|
||||||
*_resource.rc
|
|
||||||
*.sln
|
|
||||||
*.idb
|
|
||||||
*.ncb
|
|
||||||
*.suo
|
|
||||||
examples/enumerator/enumerator
|
|
||||||
examples/event/event
|
|
||||||
examples/qespta/qespta
|
|
||||||
examples/uartassistant/uartassistant
|
|
||||||
object_script.*
|
|
5
3rdparty/qextserialport/qextserialport.pro
vendored
5
3rdparty/qextserialport/qextserialport.pro
vendored
@ -4,7 +4,7 @@
|
|||||||
# CONFIG += qesp_static
|
# CONFIG += qesp_static
|
||||||
|
|
||||||
# Uncomment following line if you want to build framework for mac
|
# Uncomment following line if you want to build framework for mac
|
||||||
# macx:CONFIG += qesp_mac_framework
|
#macx:CONFIG += qesp_mac_framework
|
||||||
|
|
||||||
# Uncomment following line if you want to enable udev for linux
|
# Uncomment following line if you want to enable udev for linux
|
||||||
# linux*:CONFIG += qesp_linux_udev
|
# linux*:CONFIG += qesp_linux_udev
|
||||||
@ -70,7 +70,6 @@ greaterThan(QT_MAJOR_VERSION, 4) {
|
|||||||
QESP_LIB_BASENAME = qextserialport
|
QESP_LIB_BASENAME = qextserialport
|
||||||
}
|
}
|
||||||
TARGET = $$qextLibraryName($$QESP_LIB_BASENAME)
|
TARGET = $$qextLibraryName($$QESP_LIB_BASENAME)
|
||||||
|
|
||||||
VERSION = 1.2.0
|
VERSION = 1.2.0
|
||||||
|
|
||||||
# generate feature file by qmake based on this *.in file.
|
# generate feature file by qmake based on this *.in file.
|
||||||
@ -78,7 +77,7 @@ QMAKE_SUBSTITUTES += extserialport.prf.in
|
|||||||
OTHER_FILES += extserialport.prf.in
|
OTHER_FILES += extserialport.prf.in
|
||||||
|
|
||||||
# for make docs
|
# for make docs
|
||||||
#include(doc/doc.pri)
|
include(doc/doc.pri)
|
||||||
|
|
||||||
# for make install
|
# for make install
|
||||||
win32:!qesp_static {
|
win32:!qesp_static {
|
||||||
|
1
3rdparty/quazip/quazip.pro
vendored
1
3rdparty/quazip/quazip.pro
vendored
@ -1,3 +1,4 @@
|
|||||||
|
PREFIX=/usr/local/
|
||||||
TEMPLATE=subdirs
|
TEMPLATE=subdirs
|
||||||
SUBDIRS=quazip
|
SUBDIRS=quazip
|
||||||
#SUBDIRS += qztest
|
#SUBDIRS += qztest
|
||||||
|
3
3rdparty/quazip/quazip/quazip.pro
vendored
3
3rdparty/quazip/quazip/quazip.pro
vendored
@ -31,6 +31,7 @@ zip.h
|
|||||||
|
|
||||||
SOURCES += *.c *.cpp
|
SOURCES += *.c *.cpp
|
||||||
|
|
||||||
|
PREFIX = /usr/local
|
||||||
unix:!symbian {
|
unix:!symbian {
|
||||||
headers.path=$$PREFIX/include/quazip
|
headers.path=$$PREFIX/include/quazip
|
||||||
headers.files=$$HEADERS
|
headers.files=$$HEADERS
|
||||||
@ -40,6 +41,8 @@ unix:!symbian {
|
|||||||
OBJECTS_DIR=.obj
|
OBJECTS_DIR=.obj
|
||||||
MOC_DIR=.moc
|
MOC_DIR=.moc
|
||||||
|
|
||||||
|
LIBS += -lz
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
|
@ -4,5 +4,11 @@ SUBDIRS = 3rdparty src
|
|||||||
|
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
|
||||||
src.depends = 3rdparty
|
TRANSLATIONS += \
|
||||||
|
Translations/Nederlands.nl_NL.ts \
|
||||||
|
Translations/Francais.fr.ts \
|
||||||
|
Translations/Svenska.se.ts \
|
||||||
|
Translations/Deutsch.de_DE.ts \
|
||||||
|
Translations/Espaniol.es.ts
|
||||||
|
|
||||||
|
src.depends = 3rdparty
|
||||||
|
@ -205,7 +205,11 @@ int main(int argc, char *argv[])
|
|||||||
lang_layout.addWidget(&lang_combo,1);
|
lang_layout.addWidget(&lang_combo,1);
|
||||||
lang_layout.addWidget(&lang_okbtn);
|
lang_layout.addWidget(&lang_okbtn);
|
||||||
|
|
||||||
|
#ifdef Q_WS_MAC
|
||||||
|
QString transdir=QCoreApplication::applicationDirPath()+"/Contents/Resources/Translations/";
|
||||||
|
#else
|
||||||
QString transdir=QCoreApplication::applicationDirPath()+"/Translations/";
|
QString transdir=QCoreApplication::applicationDirPath()+"/Translations/";
|
||||||
|
#endif
|
||||||
QDir dir(transdir);
|
QDir dir(transdir);
|
||||||
qDebug() << "Scanning \"" << transdir << "\" for translations";
|
qDebug() << "Scanning \"" << transdir << "\" for translations";
|
||||||
dir.setFilter(QDir::Files);
|
dir.setFilter(QDir::Files);
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include <QCalendarWidget>
|
#include <QCalendarWidget>
|
||||||
#include <QTextCharFormat>
|
#include <QTextCharFormat>
|
||||||
|
|
||||||
#include "qextserialport/src/qextserialenumerator.h"
|
#include "src/qextserialenumerator.h"
|
||||||
|
|
||||||
#include "oximetry.h"
|
#include "oximetry.h"
|
||||||
#include "ui_oximetry.h"
|
#include "ui_oximetry.h"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
|
|
||||||
#include "qextserialport/src/qextserialport.h"
|
#include "src/qextserialport.h"
|
||||||
|
|
||||||
#include "SleepLib/profiles.h"
|
#include "SleepLib/profiles.h"
|
||||||
#include "SleepLib/day.h"
|
#include "SleepLib/day.h"
|
||||||
|
55
src/src.pro
55
src/src.pro
@ -8,7 +8,7 @@ QT += core gui opengl network xml
|
|||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION,4) {
|
greaterThan(QT_MAJOR_VERSION,4) {
|
||||||
QT += widgets webkitwidgets
|
QT += widgets webkitwidgets
|
||||||
} else {
|
} else { # qt4
|
||||||
QT += webkit
|
QT += webkit
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,8 +41,8 @@ unix:!macx:LIBS += -lX11 -lz -lGLU
|
|||||||
|
|
||||||
macx {
|
macx {
|
||||||
SOURCES +=
|
SOURCES +=
|
||||||
LIBS += -framework IOKit -framework CoreFoundation -lz
|
LIBS += -lz
|
||||||
ICON = icons/iconfile.icns
|
ICON = ../icons/iconfile.icns
|
||||||
}
|
}
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
@ -182,13 +182,6 @@ OTHER_FILES += \
|
|||||||
docs/update_notes.html \
|
docs/update_notes.html \
|
||||||
qextserialport/qextserialport.pri
|
qextserialport/qextserialport.pri
|
||||||
|
|
||||||
TRANSLATIONS += \
|
|
||||||
../Translations/Nederlands.nl_NL.ts \
|
|
||||||
../Translations/Francais.fr.ts \
|
|
||||||
../Translations/Svenska.se.ts \
|
|
||||||
../Translations/Deutsch.de_DE.ts \
|
|
||||||
../Translations/Espaniol.es.ts
|
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
DDIR = $$OUT_PWD/debug/Translations
|
DDIR = $$OUT_PWD/debug/Translations
|
||||||
@ -210,30 +203,36 @@ win32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
mac {
|
mac {
|
||||||
TransFiles.files = ../Translations
|
TransFiles.files = $$files(../Translations/*.qm)
|
||||||
TransFiles.path = Contents/MacOS
|
TransFiles.path = Contents/Resources/Translations
|
||||||
QMAKE_BUNDLE_DATA += TransFiles
|
QMAKE_BUNDLE_DATA += TransFiles
|
||||||
|
|
||||||
|
# Precopy some frameworks
|
||||||
|
# LibFiles.files = $$OUT_PWD/../3rdparty/qextserialport/qextserialport.framework
|
||||||
|
# LibFiles.path = Contents/Frameworks
|
||||||
|
# QMAKE_BUNDLE_DATA += LibFiles
|
||||||
|
|
||||||
|
#CONFIG(release, debug|release) {
|
||||||
|
# TmpFiles.files = $$files($$OUT_PWD/../3rdparty/quazip/quazip/libquazip.1.dylib) \
|
||||||
|
# $$files($$OUT_PWD/../3rdparty/qextserialport/libqextserialport.1.dylib)
|
||||||
|
#} else: CONFIG(debug, debug|release) {
|
||||||
|
# TmpFiles.files = $$files($$OUT_PWD/../3rdparty/quazip/quazip/libquazip.1.dylib) \
|
||||||
|
# $$files($$OUT_PWD/../3rdparty/qextserialport/libqextserialport_debug.1.dylib)
|
||||||
|
#}
|
||||||
|
# TmpFiles.path = Contents/Frameworks
|
||||||
|
# QMAKE_BUNDLE_DATA += TmpFiles
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
INCLUDEPATH += src \
|
|
||||||
../3rdparty \
|
|
||||||
../3rdparty/quazip
|
|
||||||
|
|
||||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/quazip/quazip/release/ -lquazip
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/quazip/quazip/release/ -lquazip
|
||||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/quazip/quazip/debug/ -lquazip
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/quazip/quazip/debug/ -lquazip
|
||||||
else:unix: LIBS += -L$$OUT_PWD/../3rdparty/quazip/quazip/ -lquazip
|
else:unix: LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/ -lquazip
|
||||||
|
|
||||||
DEPENDPATH += $$PWD/../3rdparty/quazip/quazip
|
INCLUDEPATH += $$PWD/../3rdparty/quazip
|
||||||
|
DEPENDPATH += $$PWD/../3rdparty/quazip
|
||||||
|
|
||||||
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/release/ -lqextserialport
|
||||||
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/debug/ -lqextserialport
|
||||||
|
else:unix: LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/ -lqextserialport
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION,4) {
|
|
||||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/release/ -lQt5ExtSerialPortd
|
|
||||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/debug/ -lQt5ExtSerialPortd
|
|
||||||
else:unix: LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/ -lQt5ExtSerialPortd
|
|
||||||
} else {
|
|
||||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/release/ -lqextserialportd
|
|
||||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/debug/ -lqextserialportd
|
|
||||||
else:unix: LIBS += -L$$OUT_PWD/../3rdparty/qextserialport/ -lqextserialportd
|
|
||||||
}
|
|
||||||
INCLUDEPATH += $$PWD/../3rdparty/qextserialport
|
INCLUDEPATH += $$PWD/../3rdparty/qextserialport
|
||||||
DEPENDPATH += $$PWD/../3rdparty/qextserialport
|
DEPENDPATH += $$PWD/../3rdparty/qextserialport
|
||||||
|
Loading…
Reference in New Issue
Block a user