pascalscript - External Pascal in Inno script which gives Unknown Preprocessor directive -
i trying use synopse json library in inno setup. getting unknown preprocessor directive.
obviously inno setup uses limited form of pascal doesn't include things synopse using. question is, there way compile synopse library or otherwise transform file can still call external library? don't want go in , mess synopse code-i think code complaining crucial, anyways.
minimal example generates error (script in same dir folder called lib contains *.pas):
#define myappname "minimal" #define myappversion "2.0" [setup] ; note: value of appid uniquely identifies application. ; not use same appid value in installers other applications. ; (to generate new guid, click tools | generate guid inside ide.) appname={#myappname} appversion={#myappversion} appvername={#myappname} [code] #include "lib\syncrossplatformjson.pas"
Comments
Post a Comment