forked from qt-creator/qt-creator
Support pkg-config in AddLibraryWizard
Reviewed-by: dt <qtc-committer@nokia.com> Task-number: QTCREATORBUG-2378
This commit is contained in:
@@ -34,9 +34,10 @@ public:
|
||||
};
|
||||
|
||||
enum LibraryKind {
|
||||
SystemLibrary,
|
||||
InternalLibrary,
|
||||
ExternalLibrary,
|
||||
InternalLibrary
|
||||
SystemLibrary,
|
||||
PackageLibrary
|
||||
};
|
||||
|
||||
enum LinkageType {
|
||||
@@ -87,9 +88,10 @@ public:
|
||||
virtual int nextId() const;
|
||||
|
||||
private:
|
||||
QRadioButton *m_systemRadio;
|
||||
QRadioButton *m_externalRadio;
|
||||
QRadioButton *m_internalRadio;
|
||||
QRadioButton *m_externalRadio;
|
||||
QRadioButton *m_systemRadio;
|
||||
QRadioButton *m_packageRadio;
|
||||
};
|
||||
|
||||
class DetailsPage : public QWizardPage
|
||||
|
||||
Reference in New Issue
Block a user