Compare commits

...

2 commits

Author SHA1 Message Date
bb74a5c713 Resources: add version info to the exe.
Why the fuck is it so complicated ? Fuck you, Microsoft engineers who
designed this format.
2022-04-24 00:31:43 +02:00
56048f64ee CMakeLists: explicitly specify it's a C++ project. 2022-04-23 21:50:20 +02:00
2 changed files with 28 additions and 1 deletions

View file

@ -15,7 +15,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 3.5)
project(MassBuilderSaveTool)
project(MassBuilderSaveTool CXX)
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/modules/" ${CMAKE_MODULE_PATH})

View file

@ -17,3 +17,30 @@
MAINICON ICON "mbst.ico"
1 24 "Application.manifest"
1 VERSIONINFO
FILEVERSION 1,4,0,0
PRODUCTVERSION 1,4,0,0
FILEOS 0x40004
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "080904B0"
{
VALUE "FileDescription", "M.A.S.S. Builder Save Tool"
VALUE "InternalName", "MassBuilderSaveTool.exe"
VALUE "OriginalFilename", "MassBuilderSaveTool.exe"
VALUE "CompanyName", "Guillaume Jacquemin"
VALUE "LegalCopyright", "Copyright \xA9 2021-2022 Guillaume Jacquemin."
VALUE "ProductName", "M.A.S.S. Builder Save Tool"
VALUE "FileVersion", "1.4.0.0"
VALUE "ProductVersion", "1.4.0.0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0809, 0x04B0
}
}