File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,13 @@ def validate(self):
63
63
if hasattr (self , "settings_build" ) and cross_building (self ):
64
64
raise ConanInvalidConfiguration ("Qwt recipe does not support cross-compilation yet" )
65
65
qt_options = self .dependencies ["qt" ].options
66
- if self .options .widgets and not qt_options .widgets :
66
+ if self .info . options .widgets and not qt_options .widgets :
67
67
raise ConanInvalidConfiguration ("qwt:widgets=True requires qt:widgets=True" )
68
- if self .options .svg and not qt_options .qtsvg :
68
+ if self .info . options .svg and not qt_options .qtsvg :
69
69
raise ConanInvalidConfiguration ("qwt:svg=True requires qt:qtsvg=True" )
70
- if self .options .opengl and qt_options .opengl == "no" :
70
+ if self .info . options .opengl and qt_options .opengl == "no" :
71
71
raise ConanInvalidConfiguration ("qwt:opengl=True is not compatible with qt:opengl=no" )
72
- if self .options .designer and not (qt_options .qttools and qt_options .gui and qt_options .widgets ):
72
+ if self .info . options .designer and not (qt_options .qttools and qt_options .gui and qt_options .widgets ):
73
73
raise ConanInvalidConfiguration ("qwt:designer=True requires qt:qttools=True, qt::gui=True and qt::widgets=True" )
74
74
75
75
def build_requirements (self ):
You can’t perform that action at this time.
0 commit comments