You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -671,7 +668,6 @@ Double-click the source tarball to unpack it, then, in Terminal.app, cd to the s
671
668
and (this installs by default into the Python framework, and is appropriate only for python.org Python installs):
672
669
673
670
674
-
export QTDIR=/Developer/Applications/Qt
675
671
python configure.py
676
672
yes
677
673
@@ -737,8 +733,19 @@ Double-click the tarball to unpack it. The following assumes PyQwt v5.2.0 (come
737
733
Now, first edit qwtconfig.pri in the qwt-5.2 subdir and change some settings so
738
734
you don't get a bloated debug static library (too bad they are not configurable from
739
735
qmake). Scroll down to the 'release/debug mode' block. Edit the last 'CONFIG +='
740
-
line, within an 'else' block, and change 'debug' to 'release'. Also uncomment
741
-
(remove # prefix) the line 'CONFIG += QwtDll'.
736
+
line, within an 'else' block, and change 'debug' to 'release'. Like so:
737
+
738
+
739
+
else {
740
+
CONFIG += release # release/debug
741
+
}
742
+
743
+
744
+
Also uncomment (remove # prefix) the line 'CONFIG += QwtDll'. Like so:
745
+
746
+
747
+
CONFIG += QwtDll
748
+
742
749
743
750
Save and close.
744
751
@@ -765,6 +772,12 @@ Now for PyQwt. Still in the Terminal:
765
772
766
773
Make sure to use the qwt install path from the Qwt build above.
767
774
775
+
Finally, if you run into problems with the library not being properly linked after you build qgis, you may need to fix that as follows and then rebuild qgis (this is not needed when bundling all Qt/PyQt related components, which is recommended, and default in the Xcode build):
0 commit comments