CMake: Use correct file type
Change-Id: Ie32a32bd1cc3e5885a6699e8ea2281982527e50e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
2134740e59
commit
ec67512454
@ -930,6 +930,11 @@ function(qt6_generate_win32_rc_file target)
|
|||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(target_file_type "VFT_DLL")
|
||||||
|
if(target_type STREQUAL "EXECUTABLE")
|
||||||
|
set(target_file_type "VFT_APP")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(contents "#include <windows.h>
|
set(contents "#include <windows.h>
|
||||||
${icons}
|
${icons}
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
@ -942,7 +947,7 @@ FILEFLAGSMASK 0x3fL
|
|||||||
FILEFLAGS 0x0L
|
FILEFLAGS 0x0L
|
||||||
#endif
|
#endif
|
||||||
FILEOS VOS_NT_WINDOWS32
|
FILEOS VOS_NT_WINDOWS32
|
||||||
FILETYPE VFT_DLL
|
FILETYPE ${target_file_type}
|
||||||
FILESUBTYPE VFT2_UNKNOWN
|
FILESUBTYPE VFT2_UNKNOWN
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK \"StringFileInfo\"
|
BLOCK \"StringFileInfo\"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user