Add win32 version manifest block

This commit is contained in:
Marek Roszko 2021-03-04 00:34:48 -05:00
parent ba364d5b5c
commit 8831c5567c
9 changed files with 72 additions and 0 deletions

View File

@ -37,6 +37,10 @@ if( CMAKE_MATCH_COUNT EQUAL 2 )
# Match slot 0 is the full string, so we want slots 1 & 2
set( KICAD_MAJOR_MINOR_VERSION "${CMAKE_MATCH_1}.${CMAKE_MATCH_2}" )
set( KICAD_MAJOR_VERSION "${CMAKE_MATCH_1}" )
set( KICAD_WIN32_RC_FILEVER_STR "${CMAKE_MATCH_1}.${CMAKE_MATCH_2}.0.0\\0" )
set( KICAD_WIN32_RC_FILEVER "${CMAKE_MATCH_1}, ${CMAKE_MATCH_2}, 0, 0" )
set( KICAD_WIN32_RC_PRODVER_STR "${CMAKE_MATCH_1}.${CMAKE_MATCH_2}\\0" )
set( KICAD_WIN32_RC_PRODVER "${CMAKE_MATCH_1}, ${CMAKE_MATCH_2}, 0, 0" )
else()
message( FATAL_ERROR "Unable to extract major and minor version string" )
endif()
@ -54,6 +58,10 @@ set( _wvh_new_version_text
#define KICAD_SEMANTIC_VERSION \"${KICAD_SEMANTIC_VERSION}\"
#define KICAD_MAJOR_VERSION \"${KICAD_MAJOR_VERSION}\"
#define KICAD_MAJOR_MINOR_VERSION \"${KICAD_MAJOR_MINOR_VERSION}\"
#define KICAD_WIN32_RC_PRODVER ${KICAD_WIN32_RC_PRODVER}
#define KICAD_WIN32_RC_PRODVER_STR \"${KICAD_WIN32_RC_PRODVER_STR}\"
#define KICAD_WIN32_RC_FILEVER ${KICAD_WIN32_RC_FILEVER}
#define KICAD_WIN32_RC_FILEVER_STR \"${KICAD_WIN32_RC_FILEVER_STR}\"
#endif /* __KICAD_VERSION_H__ */
" )

View File

@ -1,3 +1,6 @@
icon_bitmap2component ICON "../bitmaps_png/icons/icon_bitmap2component.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad Image Converter"
#define RC_VER_INTERNALNAME "bitmap2component"
#define RC_VER_ORIGINALFILENAME "bitmap2component.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,7 @@
icon_eeschema ICON "../bitmaps_png/icons/icon_eeschema.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad Schematic Editor"
#define RC_VER_INTERNALNAME "eeschema"
#define RC_VER_ORIGINALFILENAME "eeschema.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,6 @@
icon_gerbview ICON "../bitmaps_png/icons/icon_gerbview.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad Gerber Viewer"
#define RC_VER_INTERNALNAME "gerbview"
#define RC_VER_ORIGINALFILENAME "gerbview.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,6 @@
icon_kicad ICON "../bitmaps_png/icons/icon_kicad.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad EDA"
#define RC_VER_INTERNALNAME "kicad"
#define RC_VER_ORIGINALFILENAME "kicad.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,6 @@
icon_pagelayout_editor ICON "../bitmaps_png/icons/icon_pagelayout_editor.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad Drawing Sheet Editor"
#define RC_VER_INTERNALNAME "pl_editor"
#define RC_VER_ORIGINALFILENAME "pl_editor.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,6 @@
icon_pcbcalculator ICON "../bitmaps_png/icons/icon_pcbcalculator.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad PCB Calculator"
#define RC_VER_INTERNALNAME "pcb_calculator"
#define RC_VER_ORIGINALFILENAME "pcb_calculator.exe"
#include "kiwin32.rc"

View File

@ -1,3 +1,6 @@
icon_pcbnew ICON "../bitmaps_png/icons/icon_pcbnew.ico"
#define RC_VER_FILE_DESCRIPTION "KiCad PCB Editor"
#define RC_VER_INTERNALNAME "pcbnew"
#define RC_VER_ORIGINALFILENAME "pcbnew.exe"
#include "kiwin32.rc"

View File

@ -1,6 +1,8 @@
// Turn off wxWidgets attempting to use its own manifests
#define wxUSE_NO_MANIFEST 1
#include "wx/msw/wx.rc"
#include <winres.h>
#include <kicad_build_version.h>
#ifdef ISOLATION_AWARE_ENABLED
#define MANIFEST_ID ISOLATIONAWARE_MANIFEST_RESOURCE_ID
@ -29,4 +31,44 @@
#endif
MANIFEST_ID RT_MANIFEST MANIFEST_FILE
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION KICAD_WIN32_RC_FILEVER
PRODUCTVERSION KICAD_WIN32_RC_PRODVER
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS (VER_DEBUG)
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
// this gets dispalyed in the windows 10 task manager
VALUE "FileDescription", RC_VER_FILE_DESCRIPTION
VALUE "FileVersion", KICAD_WIN32_RC_FILEVER_STR
//original filename without extension
VALUE "InternalName", RC_VER_INTERNALNAME
VALUE "LegalCopyright", "Copyright (C) 2021 KiCad Developers"
// the exe name
VALUE "OriginalFilename", RC_VER_ORIGINALFILENAME
// name of distributed package
VALUE "ProductName", "KiCad EDA"
VALUE "ProductVersion", KICAD_WIN32_RC_PRODVER_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
//RESOURCE FILES MUST CONTAIN A BLANK LINE AT THE END