comparison installer.cpp @ 126:31435b4d9833

Build a 32-bit installer as well as 64-bit (on Windows). Requires splitting the resource file in two, otherwise the 32-bit compiler runs out of heap space!
author Chris Cannam
date Fri, 12 Jun 2020 15:13:59 +0100
parents 6dc2c2adae08
children
comparison
equal deleted inserted replaced
125:1f7260245c6d 126:31435b4d9833
766 int checkColumn = 0; 766 int checkColumn = 0;
767 int titleColumn = 1; 767 int titleColumn = 1;
768 int statusColumn = 2; 768 int statusColumn = 2;
769 int infoColumn = 4; // column 3 is a small sliver of spacing 769 int infoColumn = 4; // column 3 is a small sliver of spacing
770 770
771 QString additionalNote = "";
772 if (sizeof(char *) == 4) {
773 additionalNote = QObject::tr("(32-bit)");
774 }
775
771 selectionLayout->addWidget 776 selectionLayout->addWidget
772 (new QLabel(QObject::tr("<b>Vamp Plugin Pack</b> v%1") 777 (new QLabel(QObject::tr("<b>Vamp Plugin Pack</b> v%1 %2")
773 .arg(PACK_VERSION)), 778 .arg(PACK_VERSION)
779 .arg(additionalNote)),
774 selectionRow, titleColumn, 1, 3); 780 selectionRow, titleColumn, 1, 3);
775 ++selectionRow; 781 ++selectionRow;
776 782
777 selectionLayout->addWidget 783 selectionLayout->addWidget
778 (new QLabel(QObject::tr("Select the plugin libraries to install:")), 784 (new QLabel(QObject::tr("Select the plugin libraries to install:")),