Skip to content

Commit

Permalink
出力のインストーラファイル名にアーキテクチャ名をつける
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tmatma committed Jun 24, 2018
1 parent c141b36 commit a778e60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion installer/sakura-x64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ DisableStartupPrompt=no
PrivilegesRequired=None

; エディタのバージョンに応じて書き換える場所
OutputBaseFilename=sakura_install{#MyAppVerH}
OutputBaseFilename=sakura_install{#MyAppVerH}-{#MyArchitecture}
VersionInfoVersion={#MyAppVer}
VersionInfoProductVersion={#MyAppVer}

Expand Down
3 changes: 2 additions & 1 deletion installer/sakura.iss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#endif
#define MyAppVer GetFileVersion("sakura\sakura.exe")
#define MyAppVerH StringChange(MyAppVer, ".", "-")
#define MyArchitecture "x86"

[Setup]
AppName=サクラエディタ
Expand All @@ -28,7 +29,7 @@ DisableStartupPrompt=no
PrivilegesRequired=None

; エディタのバージョンに応じて書き換える場所
OutputBaseFilename=sakura_install{#MyAppVerH}
OutputBaseFilename=sakura_install{#MyAppVerH}-{#MyArchitecture}
VersionInfoVersion={#MyAppVer}
VersionInfoProductVersion={#MyAppVer}

Expand Down

0 comments on commit a778e60

Please sign in to comment.