File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -773,7 +773,11 @@ impl CxxQtBuilder {
773
773
} )
774
774
. collect :: < HashSet < String > > ( ) ;
775
775
if dirs. len ( ) > 1 {
776
- panic ! ( "Only one directory is support per QmlModule for rust_files" ) ;
776
+ panic ! (
777
+ "Only one directory is supported per QmlModule for rust_files.\n \
778
+ This is due to Qt bug https://bugreports.qt.io/browse/QTBUG-93443\n \
779
+ Found directories: {dirs:?}"
780
+ ) ;
777
781
}
778
782
779
783
for files in generate_cxxqt_cpp_files (
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ impl Parser {
85
85
} else if name_value. path . is_ident ( "cxx_file_stem" ) {
86
86
return Err ( Error :: new (
87
87
meta. span ( ) ,
88
- "cxx_file_stem is unsupported: TODO new system message " ,
88
+ "cxx_file_stem is unsupported, instead the input file name will be used " ,
89
89
) ) ;
90
90
}
91
91
}
You can’t perform that action at this time.
0 commit comments