diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-01-08 12:53:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-10 15:16:52 -0800 |
commit | b40354c7f28676d011de35e49b178d9aa789bbc7 (patch) | |
tree | fcf3569df1740c9511dda5f0fb14559a80083be5 /Subsurface-mobile.pro | |
parent | eb2b0f0a3eb9cf84970c9a21dda9553112b99b17 (diff) | |
download | subsurface-b40354c7f28676d011de35e49b178d9aa789bbc7.tar.gz |
build-system: compile stats code on mobile OSs
Android and iOS use qmake, so add the code to the .pro file.
This also removes all remnants of QCharts includes and uses and all the
references to QCharts in our various build systems.
That was a brief but extremely useful detour.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Subsurface-mobile.pro')
-rw-r--r-- | Subsurface-mobile.pro | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Subsurface-mobile.pro b/Subsurface-mobile.pro index 959af95c8..19d69c2f2 100644 --- a/Subsurface-mobile.pro +++ b/Subsurface-mobile.pro @@ -127,6 +127,20 @@ SOURCES += subsurface-mobile-main.cpp \ backend-shared/exportfuncs.cpp \ backend-shared/plannershared.cpp \ backend-shared/roundrectitem.cpp \ + stats/statsvariables.cpp \ + stats/statsview.cpp \ + stats/barseries.cpp \ + stats/boxseries.cpp \ + stats/chartlistmodel.cpp \ + stats/informationbox.cpp \ + stats/legend.cpp \ + stats/pieseries.cpp \ + stats/scatterseries.cpp \ + stats/statsaxis.cpp \ + stats/statscolors.cpp \ + stats/statsgrid.cpp \ + stats/statsseries.cpp \ + stats/statsstate.cpp \ mobile-widgets/qmlinterface.cpp \ mobile-widgets/qmlmanager.cpp \ mobile-widgets/statsmanager.cpp \ @@ -263,6 +277,22 @@ HEADERS += \ backend-shared/exportfuncs.h \ backend-shared/plannershared.h \ backend-shared/roundrectitem.h \ + stats/barseries.h \ + stats/boxseries.h \ + stats/chartlistmodel.h \ + stats/informationbox.h \ + stats/legend.h \ + stats/pieseries.h \ + stats/scatterseries.h \ + stats/statsaxis.h \ + stats/statscolors.h \ + stats/statsgrid.h \ + stats/statsseries.h \ + stats/statsstate.h \ + stats/statstranslations.h \ + stats/statsvariables.h \ + stats/statsview.h \ + stats/zvalues.h \ mobile-widgets/qmlinterface.h \ mobile-widgets/qmlmanager.h \ mobile-widgets/statsmanager.h \ |