Selaa lähdekoodia

Update example to show how to get clean preprocessor output.

Martijn Laan 5 vuotta sitten
vanhempi
commit
1751b2d301
1 muutettua tiedostoa jossa 12 lisäystä ja 12 poistoa
  1. 12 12
      Examples/ISPPExample1.iss

+ 12 - 12
Examples/ISPPExample1.iss

@@ -1,22 +1,22 @@
-; -- ISPPExample1.iss --
-;
-; This script shows various basic things you can achieve using Inno Setup Preprocessor (ISPP).
-; To enable commented #define's, either remove the ';' or use ISCC with the /D switch.
-
+// -- ISPPExample1.iss --
+//
+// This script shows various basic things you can achieve using Inno Setup Preprocessor (ISPP).
+// To enable commented #define's, either remove the '//' or use ISCC with the /D switch.
+//
 #pragma verboselevel 9
-
-;#define Debug
-
-;#define AppEnterprise
-
+//
+//#define Debug
+//
+//#define AppEnterprise
+//
 #ifdef AppEnterprise
   #define AppName "My Program Enterprise Edition"
 #else
   #define AppName "My Program"
 #endif
-
+//
 #define AppVersion GetVersionNumbersString(AddBackslash(SourcePath) + "MyProg.exe")
-
+//
 [Setup]
 AppName={#AppName}
 AppVersion={#AppVersion}