Skip to content

Commit

Permalink
Merge pull request #80 from Geode-solutions/fix/version-rc
Browse files Browse the repository at this point in the history
fix(Version): add version .rc file
  • Loading branch information
panquez committed Dec 12, 2023
2 parents b3a6a07 + db70f7d commit 679502e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile bindings/python/requirements.in
# pip-compile --pre bindings/python/requirements.in
#
opengeode-core==14.*,>=14.10.2
# via -r bindings/python/requirements.in
26 changes: 26 additions & 0 deletions cmake/version.rc.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#define RC_VERSION 1,0,0,0

1 VERSIONINFO
FILEVERSION RC_VERSION
PRODUCTVERSION RC_VERSION
BEGIN
BLOCK "VarFileInfo"
BEGIN
// English language (0x409) and the Windows Unicode codepage (1200)
VALUE "Translation", 0x409, 1200
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0"
VALUE "ProductVersion", "@CPACK_PACKAGE_VERSION@\0"
VALUE "FileVersion", "@CPACK_PACKAGE_VERSION@\0"
VALUE "InternalName", "@PROJECT_LIB_NAME@\0"
VALUE "ProductName", "@PROJECT_LIB_NAME@\0"
VALUE "CompanyName", "Geode-solutions SAS\0"
VALUE "LegalCopyright", "Copyright 2019 - 2023 Geode-solutions SAS. All rights reserved.\0"
VALUE "Commentaires", "https://geode-solutions.com\0"
END
END
END

0 comments on commit 679502e

Please sign in to comment.