diff options
| author | a1xd <[email protected]> | 2020-12-05 21:26:29 -0500 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-12-05 21:26:29 -0500 |
| commit | f87fa2c92e246fe0464eacfc2c338e34061e7fd4 (patch) | |
| tree | e4760c579597d0e292c7b03dff95d19bb8f3c750 | |
| parent | add more changes from review (diff) | |
| download | rawaccel-f87fa2c92e246fe0464eacfc2c338e34061e7fd4.tar.xz rawaccel-f87fa2c92e246fe0464eacfc2c338e34061e7fd4.zip | |
update signed, add installers
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | installer/installer.rc | 2 | ||||
| -rw-r--r-- | installer/installer.vcxproj | 3 | ||||
| -rw-r--r-- | signed/driver/rawaccel.sys | bin | 52560 -> 61096 bytes | |||
| -rw-r--r-- | signed/installer.exe | bin | 0 -> 59784 bytes | |||
| -rw-r--r-- | signed/uninstaller.exe | bin | 0 -> 55176 bytes | |||
| -rw-r--r-- | uninstaller/uninstaller.vcxproj | 3 |
7 files changed, 6 insertions, 3 deletions
@@ -28,6 +28,7 @@ bld/ [Ll]og/ signed/* !signed/driver/ +!signed/*install*.exe # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/installer/installer.rc b/installer/installer.rc index 4f56541..43672d7 100644 --- a/installer/installer.rc +++ b/installer/installer.rc @@ -72,7 +72,7 @@ BEGIN BEGIN VALUE "FileDescription", "Raw Accel installer (" RA_MIN_OS ")" VALUE "FileVersion", RA_VER_STRING - VALUE "OriginalFilename", "converter.exe" + VALUE "OriginalFilename", "installer.exe" VALUE "ProductName", "Raw Accel" VALUE "ProductVersion", RA_VER_STRING END diff --git a/installer/installer.vcxproj b/installer/installer.vcxproj index de4bb0e..fa18344 100644 --- a/installer/installer.vcxproj +++ b/installer/installer.vcxproj @@ -99,7 +99,8 @@ <AdditionalManifestFiles>install.manifest</AdditionalManifestFiles> </Manifest> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "$(SolutionDir)signed\$(TargetFileName)"</Command> + <Command> + </Command> </PostBuildEvent> <ResourceCompile> <AdditionalIncludeDirectories>$(SolutionDir)/common;</AdditionalIncludeDirectories> diff --git a/signed/driver/rawaccel.sys b/signed/driver/rawaccel.sys Binary files differindex a390fc4..3762899 100644 --- a/signed/driver/rawaccel.sys +++ b/signed/driver/rawaccel.sys diff --git a/signed/installer.exe b/signed/installer.exe Binary files differnew file mode 100644 index 0000000..38f9201 --- /dev/null +++ b/signed/installer.exe diff --git a/signed/uninstaller.exe b/signed/uninstaller.exe Binary files differnew file mode 100644 index 0000000..aa59df9 --- /dev/null +++ b/signed/uninstaller.exe diff --git a/uninstaller/uninstaller.vcxproj b/uninstaller/uninstaller.vcxproj index 1098ed7..52e5583 100644 --- a/uninstaller/uninstaller.vcxproj +++ b/uninstaller/uninstaller.vcxproj @@ -85,7 +85,8 @@ <UACExecutionLevel>RequireAdministrator</UACExecutionLevel> </Link> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "$(SolutionDir)signed\$(TargetFileName)"</Command> + <Command> + </Command> </PostBuildEvent> <ResourceCompile> <AdditionalIncludeDirectories>$(SolutionDir)/common;</AdditionalIncludeDirectories> |