-
Notifications
You must be signed in to change notification settings - Fork 54
/
README.txt
53 lines (34 loc) · 1.5 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
AutoIt v3
=========
AutoIt v3 is a work in progress. Bugs to support at hiddensoft dot com
NOTE: For obvious reasons this archive doesn't contain all the new features in the current
version of AutoIt. The code for these features may be made available at a later date.
Excluded features are:
- GUI
- DllCall
- ControlListView
- InetGet
However, as the primary goal of releasing this source is to help people contribute to the AutoIt
project, the missing features aren't so important.
Compiling AutoIt
================
To compile AutoIt you need one of the following compilers
- Visual C++ .NET 2003 (VC 7.1) - Use AutoIt_VC7.sln
- Visual C++ v6 - Use AutoIt_VC6.dsw
- DevC++ - Use AutoIt_DevC.dev (Must be updated with at least the WinApi 3.1 package)
Note: The main compilers used (and checked) are Visual C++ 6 and 7. MingW is not the main
development environment. Public releases of AutoIt will be compiled with VC6 as it currently gives
the smallest executable.
Things not working under DevC++ (commented out with #ifdef statements):
- "new" handler,
Visual C++
----------
Select "Build All" from the menus. Make sure to build both projects "AutoIt" and "AutoItSC"
DevC++
------
AutoIt has been tested with DevC++ 4.9.9
Select "Rebuild All" from the "Execute" menu to clean and compile everything.
To run the DevC/MinGW compiled file you will need the DLLs "mingwm10.dll" and "msvcrt.dll" in your
path.
Have fun.
Jonathan <jon at hiddensoft dot com>