summaryrefslogtreecommitdiff
path: root/src/serialport/serialport-lib.pri
Commit message (Collapse)AuthorAgeFilesLines
* Linux: removed the duplicated linking of libudevDenis Shienkov2013-08-171-4/+0
| | | | | | | | | Existence checking and linking of libudev is already carried out by means of pkgconfig. Change-Id: I5233ab2ce7ed342d95e8ba646b4024c8ad6b8a78 Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Laszlo Papp <lpapp@kde.org>
* Use the pkg-config for finding libudev only on UnixLaszlo Papp2013-02-111-4/+6
| | | | | | | | | This is not a critical error, but Windows at least gives some warning about the pkgconfig unavailable. Libudev should be working only on Unix after all. Change-Id: I3ee088f6ae3cc663a9fabe441a2eefa2a23d2f32 Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Remove the dash from the global serialport header file nameLaszlo Papp2013-02-081-1/+1
| | | | | | | | | | 1) It is not consistent with the rest in QtSerialPort. 2) Even more importantly, it is not consistent with other Qt Project global files. Change-Id: I9d9262264bc2dbe5acfbce04013d9be08df2b47c Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Rename the TtyLocker class to QTtyLocker as it gets to Qt scopeLaszlo Papp2013-02-071-2/+2
| | | | | Change-Id: I74b90ec2a6cb08a9bc75225e04995a3b05f2c6e9 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Detect the udev installation properly and branch accordinglyLaszlo Papp2013-02-071-1/+6
| | | | | | | | | | This change unbreaks the build when one does not have libudev-dev installed as the dependency is hard coded. However, it should be a soft (optional) dependency and the project even supplies a fallback operation for that. Change-Id: I6072ad54c1d778a79c7f02b68c80bd07eb24e5f4 Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Make all the file renames and relevant changesLaszlo Papp2013-01-271-19/+19
| | | | | | | | "git log --follow /path/to/the/file/in/question" can be used, for instance, for the renamed files to get the whole history. Change-Id: I20da087ca88e2c179a6c3232772fa21575e0aa6a Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Call the module QtSerialPort instead of QtAddOnSerialPortLaszlo Papp2013-01-261-1/+1
| | | | | | | | Use the QTSERIALPORT as a term for internal variables as well to remain consistent with the freshly chosen module name. Change-Id: Ia780b105649b39a1eca46702466da5bc31ec5af0 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
* Updating a project tree for compilation fixingDenis Shienkov2012-11-051-0/+80
For optimization and build correction for Qt4/Qt5 there was a need for unification and modification of a tree of projects. The previous structure of the project didn't meet the changed requirements for Qt5 that led to errors of build and complication of possibility of correction of errors of build. It is necessary to note the main changes: * Removed not used /modules direcrory with all content, because it is autogenerated. * Moved all contents from /src directory to /src/serialport directory. It was necessary for simplification of the qmake commands at building for Qt5 (in particular, there is no need to fill out a module name since it is the name of directory /serialport). * Changed the exported macro defines Q_ADDON_SERIALPORT_EXPORT to Q_SERIALPORT_EXPORT and QT_ADDON_SERIALPORT_LIB to QT_SERIALPORT_LIB. It was necessary for fixing compilation error for unknown reason on Windows and Qt5 when used MSVC compiler. Checked on Windows and Gnu/Linux, also this patch fixes bug: Task-number: QTPLAYGROUND-5 Change-Id: Idc9ba98115d5961a22ae307c0e4034a56f3223b5 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>