]> git.8kb.co.uk Git - dataflex/df32func/blob - README.md
Add function show_window to iminimise cmd windows via Win32 ShowWindow
[dataflex/df32func] / README.md
1 df32func\r
2 ========\r
3 Some useful helper functions to speed up development when working with DataFlex\r
4 3.2 console mode.\r
5 \r
6 Requirements\r
7 ------------\r
8 MinGW or compatible GNU C compiler: \r
9         http://www.mingw.org/\r
10 DataFlex 3.2 Console Mode or greater: \r
11         http://www.dataaccess.com/\r
12 For regex functionality requires the GNU posix regex libraries:\r
13         http://sourceforge.net/projects/mingw/files/Other/UserContributed/regex/mingw-regex-2.5.1/mingw-libgnurx-2.5.1-src.tar.gz/download\r
14 \r
15 Installation\r
16 ------------\r
17 Ensure you have both DF32 and MinGW environments set up correctly and have both \r
18 bin directories are in your path (i.e. locations of "dfcomp" and "make")\r
19 \r
20 Open a DOS prompt and cd into df32func directory.\r
21 \r
22 To build the dynamic link library and the dataflex precompiled package:\r
23 \r
24         build all\r
25 \r
26 To build just the dataflex precompiled package:\r
27 \r
28         build df\r
29 \r
30 Or build each independently\r
31 \r
32 The dynamic link library:\r
33 \r
34         cd src/c\r
35         make clean\r
36         make\r
37 \r
38 The dataflex precompiled package:\r
39 \r
40         cd src/df32\r
41         dfcomp df32func.mk -p\r
42         \r
43 Alternatively include the dataflex includes as required directly in dataflex\r
44 source code.
45 \r
46 Once everything is built, copy the dataflex .pki and .flp files to the location where\r
47 your dataflex setup expects to find it's pkg and flx files. Copy both df32func.dll and\r
48 libgnurx-0.dll to a location in your path.\r