Add newline after import
This avoids -Wnewline-eof for clang compilers.
error: no newline at end of file [-Werror,-Wnewline-eof]
Q_IMPORT_PLUGIN(Governikus_AnimationsPlugin)
Pick-to: 6.7 6.6 6.5
Change-Id: I8de21f1f27cd177211ebf70fac0e01292cfa410c
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
bb10
parent
9e9099865a
commit
f926ccbf64
|
|
@ -187,7 +187,7 @@ function(__qt_internal_get_plugin_import_macro plugin_target out_var)
|
|||
set(class_name "${class_name_prefixed}")
|
||||
endif()
|
||||
|
||||
set(${out_var} "Q_IMPORT_PLUGIN(${class_name})" PARENT_SCOPE)
|
||||
set(${out_var} "Q_IMPORT_PLUGIN(${class_name})\n" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(__qt_internal_get_plugin_include_prelude out_var)
|
||||
|
|
|
|||
Loading…
Reference in New Issue