1

In SciTE4AutoIt3's Tools menu I can choose Build or Compile.

What's the difference? They both create an .exe file.

user4157124
  • 2,809
  • 13
  • 27
  • 42
Christopher Peterson
  • 983
  • 7
  • 22
  • 32

1 Answers1

4

A build is series of steps which usually include:

  1. Compilation
  2. Updating of Version information
  3. Inclusion of resources and manifest information.

For AutoIt, using the SciTE editor, Compile and Build are almost the same. The only difference is that Compile presents you with a GUI where you can alter compile settings, such as which packages to include. Build will just run Compile with default settings.

TylerH
  • 20,799
  • 66
  • 75
  • 101
Jatin Gera
  • 814
  • 1
  • 11
  • 25