Inno Setup string concatenation in #define directive

后端 未结 1 569
暖寄归人
暖寄归人 2020-12-10 17:49

Did the Inno Setup website fail to document the #define directives or did I miss that somewhere? Is it permissible to define using defined strings and concatena

相关标签:
1条回答
  • 2020-12-10 18:15

    Here is the section of help concerning defines:

    http://www.jrsoftware.org/ispphelp/index.php?topic=define

    Regarding your example:

    #define MyApp "ABC"
    #define MyAppVersion "1.2.1"
    #define MyFolder MyApp + MyAppVersion
    
    #define MyFolder1 MyApp + "Some other string"
    
    0 讨论(0)
提交回复
热议问题