Skip to content

Commit 32d3c6e

Browse files
authored
Merge branch 'master' into JST/removeUnused
2 parents 8fe9094 + 38e95ad commit 32d3c6e

21 files changed

+1247
-737
lines changed

.github/workflows/build-linux-clazy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
- run: sudo apt update
21-
- run: sudo apt install -y clazy apt-utils build-essential wget qt6-base-dev-tools qt6-declarative-dev qt6-multimedia-dev libqt6charts6-dev libqt6datavisualization6-dev libqt6svg6-dev libqt6core5compat6-dev libopencv-core-dev libopencv-dev libqwt-qt5-6 libqwt-qt5-dev libarmadillo-dev libgl1-mesa-dev libglu1-mesa-dev
20+
- run: sudo apt update
21+
- run: sudo apt install -y clazy apt-utils build-essential wget qt6-base-dev-tools qt6-declarative-dev qt6-multimedia-dev libqt6charts6-dev libqt6datavisualization6-dev libqt6svg6-dev libopencv-core-dev libopencv-dev libqwt-qt5-6 libqwt-qt5-dev libarmadillo-dev libgl1-mesa-dev libglu1-mesa-dev
2222
- run: wget -O qwt-${{env.QWT_version}}.zip https://sourceforge.net/projects/qwt/files/qwt/${{env.QWT_version}}/qwt-${{env.QWT_version}}.zip/download?use_mirror=pilotfiber
2323
- run: 7z x qwt-${{env.QWT_version}}.zip
2424
- run: cd qwt-${{env.QWT_version}} ; /usr/lib/qt6/bin/qmake

.github/workflows/build-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v4
22-
- run: sudo apt update
23-
- run: sudo apt install -y apt-utils build-essential wget qt6-base-dev-tools qt6-declarative-dev qt6-multimedia-dev libqt6charts6-dev libqt6datavisualization6-dev libqt6svg6-dev libqt6core5compat6-dev libopencv-core-dev libopencv-dev libqwt-qt5-6 libqwt-qt5-dev libarmadillo-dev libgl1-mesa-dev libglu1-mesa-dev
22+
- run: sudo apt update
23+
- run: sudo apt install -y apt-utils build-essential wget qt6-base-dev-tools qt6-declarative-dev qt6-multimedia-dev libqt6charts6-dev libqt6datavisualization6-dev libqt6svg6-dev libopencv-core-dev libopencv-dev libqwt-qt5-6 libqwt-qt5-dev libarmadillo-dev libgl1-mesa-dev libglu1-mesa-dev
2424
- run: wget -O qwt-${{env.QWT_version}}.zip https://sourceforge.net/projects/qwt/files/qwt/${{env.QWT_version}}/qwt-${{env.QWT_version}}.zip/download?use_mirror=pilotfiber
2525
- run: 7z x qwt-${{env.QWT_version}}.zip
2626
- run: cd qwt-${{env.QWT_version}} ; /usr/lib/qt6/bin/qmake

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: pip install aqtinstall
9393
- name: install QT
9494
if: steps.cache-openCV-QT.outputs.cache-hit != 'true'
95-
run: aqt install-qt windows desktop ${{env.QT_version}} win64_mingw -m qtcharts qtdatavis3d qt5compat
95+
run: aqt install-qt windows desktop ${{env.QT_version}} win64_mingw -m qtcharts qtdatavis3d
9696
- uses: actions/checkout@v4
9797
if: steps.cache-openCV-QT.outputs.cache-hit != 'true'
9898
with:

DFTFringe.pro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ DEFINES += QAPPLICATION_CLASS=QApplication
1414

1515
TEMPLATE = app
1616

17-
QT += charts concurrent core core5compat datavisualization gui network opengl widgets xml
17+
QT += charts concurrent core datavisualization gui network opengl widgets xml
1818

1919
qtHaveModule(printsupport): QT += printsupport
2020

@@ -154,6 +154,7 @@ SOURCES += SingleApplication/singleapplication.cpp \
154154
astigpolargraph.cpp \
155155
astigscatterplot.cpp \
156156
astigstatsdlg.cpp \
157+
autoinvertdlg.cpp \
157158
averagewavefrontfilesdlg.cpp \
158159
batchigramwizard.cpp \
159160
bathastigdlg.cpp \
@@ -269,6 +270,7 @@ HEADERS += bezier/bezier.h \
269270
arbitrarywavwidget.h \
270271
astigscatterplot.h \
271272
astigstatsdlg.h \
273+
autoinvertdlg.h \
272274
averagewavefrontfilesdlg.h \
273275
batchigramwizard.h \
274276
bathastigdlg.h \
@@ -379,6 +381,7 @@ FORMS += arbitrarywavefronthelp.ui \
379381
annulushelpdlg.ui \
380382
astigpolargraph.ui \
381383
astigstatsdlg.ui \
384+
autoinvertdlg.ui \
382385
averagewavefrontfilesdlg.ui \
383386
batchigramwizard.ui \
384387
bathastigdlg.ui \

DFTFringe_Dale.pro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ SOURCES += main.cpp \
3131
arbitrarywavefronthelp.cpp \
3232
arbitrarywavwidget.cpp \
3333
astigpolargraph.cpp \
34+
autoinvertdlg.cpp \
3435
cpoint.cpp \
3536
defocusdlg.cpp \
3637
edgeplot.cpp \
@@ -145,6 +146,7 @@ HEADERS += mainwindow.h \
145146
arbitrarywavefronthelp.h \
146147
arbitrarywavwidget.h \
147148
astigpolargraph.h \
149+
autoinvertdlg.h \
148150
cpoint.h \
149151
defocusdlg.h \
150152
edgeplot.h \
@@ -262,6 +264,7 @@ FORMS += mainwindow.ui \
262264
annulushelpdlg.ui \
263265
arbitrarywavefronthelp.ui \
264266
astigpolargraph.ui \
267+
autoinvertdlg.ui \
265268
defocusdlg.ui \
266269
dfttools.ui \
267270
dftarea.ui \
@@ -361,7 +364,6 @@ LIBS += D:\opencv\opencv-3.4.12\build\bin\libopencv_imgproc3412.dll
361364
LIBS += D:\opencv\opencv-3.4.12\build\bin\libopencv_features2d3412.dll
362365
LIBS += D:\opencv\opencv-3.4.12\build\bin\libopencv_calib3d3412.dll
363366

364-
365367
#LIBS += D:\armadillo\bin\libarmadillo.dll
366368
LIBS += D:\lapack\build64\bin\liblapack.dll
367369
LIBS += D:\lapack\build64\bin\libblas.dll

DFTFringe_QT5.pro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ SOURCES += SingleApplication/singleapplication.cpp \
153153
astigpolargraph.cpp \
154154
astigscatterplot.cpp \
155155
astigstatsdlg.cpp \
156+
autoinvertdlg.cpp \
156157
averagewavefrontfilesdlg.cpp \
157158
batchigramwizard.cpp \
158159
bathastigdlg.cpp \
@@ -268,6 +269,7 @@ HEADERS += bezier/bezier.h \
268269
arbitrarywavwidget.h \
269270
astigscatterplot.h \
270271
astigstatsdlg.h \
272+
autoinvertdlg.h \
271273
averagewavefrontfilesdlg.h \
272274
batchigramwizard.h \
273275
bathastigdlg.h \
@@ -378,6 +380,7 @@ FORMS += arbitrarywavefronthelp.ui \
378380
annulushelpdlg.ui \
379381
astigpolargraph.ui \
380382
astigstatsdlg.ui \
383+
autoinvertdlg.ui \
381384
averagewavefrontfilesdlg.ui \
382385
batchigramwizard.ui \
383386
bathastigdlg.ui \

0 commit comments

Comments
 (0)