本文主要是介绍Inno---参考代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#define MyAppName "test"
#define MyAppVersion "1.0"
#define MyAppPublisher "test"
#define MyAppExeName "test.exe"[Setup]
; 注: AppId的值为单独标识该应用程序。
; 不要为其他安装程序使用相同的AppId值。
; (生成新的GUID,点击 工具|在IDE中生成GUID。)
AppId={{241FCDA1-8869-439C-9C7F-BF0061ADE5BC}
;应用程序名称
AppName={#MyAppName}
;应用程序版本号
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
;默认安装文件夹名
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
;输出的exe的地址
OutputDir=C:\Users\Lenovo\Desktop
OutputBaseFilename=test
;exe的图标的路径
SetupIconFile=C:\Users\Lenovo\Desktop\heart.ico
;使用压缩类算法lzma
Compression=lzma
;固定压缩格式
SolidCompression=yes
;不需要管理权限也能安装
PrivilegesRequired=none
[Languages]
;中文语言
Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"
[Tasks]
;Tasks: desktopicon 任务:生成快捷方式
Name: "desktopicon"; Descr
这篇关于Inno---参考代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!