summaryrefslogtreecommitdiffstats
path: root/src/lib/lib.pro
Commit message (Collapse)AuthorAgeFilesLines
* Do not use PCH on qotaclientasync.cppErik Larsson2017-02-031-1/+3
| | | | | | | | | | | | | | | | | | | | qotaclientasync.cpp includes ostree.h which includes headers from glib2. These headers also defines signals which generated compile errors due to Qt:s signals definition. One solution on this problem is to include the ostree headers before including Qt-header files. But when using pre-compiled headers qmake will automatically generate PCH for the modules dependencies, in this case QtCore. The PCH are included using the -include argument in gcc which includes the PCH just as doing a #include on the first line in the source file. This means that when using PCH we will include QtCore, which will include qobjectdefs.h, before ostree.h By adding qotaclientasync.cpp to NO_PCH_SOURCES instead of the "normal" SOURCES we tell qmake to not use PCH for that specific file. Change-Id: Ideb1c6aaa98905d7f516761087b7a67bb1e3f402 Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
* Rename QtOTAUpdate -> QtOtaUpdateGatis Paeglis2016-11-021-1/+1
| | | | | | | To be consistent with other Qt libs/modules. Change-Id: Ia9334c96c4b0bafca9a5c3b0615cf8c325e55243 Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
* Introduce QOtaRepositoryConfig classGatis Paeglis2016-11-011-2/+5
| | | | | | | | for configuring access to remote ostree repositories. Change-Id: Ic44e9457daf2c7e2975ab81823a59357791a6fab Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io> Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
* Disable cmake and set module name.Gatis Paeglis2016-06-071-0/+3
| | | | | Change-Id: I07eeeab8ec184f82c999a96615d65d2c7fb111aa Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
* Qt/QML API for OTA 1.0 Tech PreviewGatis Paeglis2016-06-061-0/+20
Change-Id: I32b41825e9b6ab7be5dff4db2688ecf37fecaa71 Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>