-
-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
129 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ package/* | |
vs2022/* | ||
vsxmake*/ | ||
*.pyc | ||
src/config/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#pragma once | ||
|
||
${define CET_DEBUG_BUILD} | ||
${define CET_GIT_TAG} | ||
${define CET_GIT_TAG_LONG} | ||
${define CET_GIT_BRANCH} | ||
${define CET_GIT_COMMIT} | ||
${define CET_GIT_COMMIT_LONG} | ||
${define CET_GIT_COMMIT_DATE} | ||
|
||
${define CET_VERSION_MAJOR} | ||
${define CET_VERSION_MINOR} | ||
${define CET_VERSION_PATCH} | ||
${define CET_VERSION_SIMPLE} | ||
${define CET_VERSION_FULL} | ||
${define CET_VERSION} | ||
|
||
${define CET_CURRENT_YEAR} | ||
${define CET_PRODUCT_NAME} | ||
${define CET_GROUP_NAME} | ||
${define CET_FILE_NAME} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#include "Windows.h" | ||
|
||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION ${CET_VERSION_MAJOR},${CET_VERSION_MINOR},${CET_VERSION_PATCH},0 | ||
PRODUCTVERSION ${CET_VERSION_MAJOR},${CET_VERSION_MINOR},${CET_VERSION_PATCH},0 | ||
FILEFLAGSMASK 0x3fL | ||
FILEFLAGS 0x${CET_DEBUG_BUILD}L | ||
FILEOS 0x40004L | ||
FILETYPE 0x2L | ||
FILESUBTYPE 0x0L | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "CompanyName", "${CET_GROUP_NAME}" | ||
VALUE "FileDescription", "${CET_PRODUCT_NAME}" | ||
VALUE "FileVersion", "${CET_VERSION_SIMPLE}" | ||
VALUE "LegalCopyright", "� 2020-${CET_CURRENT_YEAR} ${CET_GROUP_NAME}. All Rights Reserved" | ||
VALUE "OriginalFilename", "${CET_FILE_NAME}" | ||
VALUE "ProductName", "${CET_PRODUCT_NAME}" | ||
VALUE "ProductVersion", "${CET_VERSION_FULL}" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0409 0x04E2 | ||
END | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters