File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,10 @@ This project is built with cmake and vcpkg and requires wxwidgets library.
3030Install vcpkg first, then install wxwidgets into vcpkg and run cmake. Make sure to define
3131` CMAKE_TOOLCHAIN_FILE ` pointing to ` vcpkg/scripts/buildsystems/vcpkg.cmake ` .
3232
33- Optionally pass ` VCPKG_TARGET_TRIPLET="x64-windows-static" ` and ` CMAKE_UPX_PATH=path/to/upx.exe `
34- to link statically and compress the executable.
33+ Make sure to pass ` VCPKG_TARGET_TRIPLET="x64-windows-static" ` to cmake to link the executable
34+ statically. If you use vscode the setting is already enabled in checked in config.
35+
36+ Optionally pass ` CMAKE_UPX_PATH=path/to/upx.exe ` to compress the executable.
3537
3638Config form is created using wxFormBuilder, ` config_base* ` files are auto generated and should
3739not be edited or formatted.
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ APP_ICON ICON "icon/appicon.ico"
1010#define VER_PRODUCTNAME_STR "MultiScreenSaver\0"
1111#define VER_ORIGINALFILENAME_STR "MultiScreenSaver.scr\0"
1212
13- #define VER_FILEVERSION 1,0
14- #define VER_FILEVERSION_STR "1.0 \0"
13+ #define VER_FILEVERSION 1,3
14+ #define VER_FILEVERSION_STR "1.3 \0"
1515
16- #define VER_PRODUCTVERSION 1,0
17- #define VER_PRODUCTVERSION_STR "1.0 \0"
16+ #define VER_PRODUCTVERSION 1,3
17+ #define VER_PRODUCTVERSION_STR "1.3 \0"
1818
1919#ifndef DEBUG
2020#define VER_DEBUG 0
You can’t perform that action at this time.
0 commit comments