Instructions to build libmodbus in a VS project
[libmodbus.git] / src / win32 / configure.js
blob6c96a90a6f77d6f6a38272d85c5619d280a8e81c
1 /* Configure script for modbus.dll, specific for Windows with Scripting Host.
2  *
3  * Inspired by configure.js from libxml2
4  *
5  * oldfaber  < oldfaber _at_ gmail _dot_ com >
6  *
7  */
9 /* The source directory, relative to the one where this file resides. */
10 var srcDir = "..";
11 /* Base name of what we are building. */
12 var baseName = "modbus";
13 /* Configure file template and output file */
14 var configFile = srcDir + "\\..\\configure.ac";
15 /* Input and output files for the modbus-version.h include */
16 var newfile;
17 /* Version strings for the binary distribution. Will be filled later in the code. */
18 var verMajor;
19 var verMinor;
20 var verMicro;
21 /* modbus features. */
22 var dryRun = false;
23 /* Win32 build options. NOT used yet */
24 var compiler = "msvc";
25 /* Local stuff */
26 var error = 0;
27 /* Filename */
28 var newFile;
30 /* Displays the details about how to use this script. */
31 function usage() {
32     var txt;
34     txt = "Usage:\n";
35     txt += "  cscript " + WScript.ScriptName + " <options>\n";
36     txt += "  cscript " + WScript.ScriptName + " help\n\n";
37     txt +=
38         "Options can be specified in the form <option>=<value>, where the value is\n";
39     txt += "either 'yes' or 'no', if not stated otherwise.\n\n";
40     txt +=
41         "\nModbus library configure options, default value given in parentheses:\n\n";
42     txt +=
43         "  dry-run:  Run configure without creating files (" +
44         (dryRun ? "yes" : "no") +
45         ")\n";
46     txt += "\nWin32 build options, default value given in parentheses:\n\n";
47     txt += "  compiler: Compiler to be used [msvc|mingw] (" + compiler + ")\n";
48     WScript.Echo(txt);
51 /* read the version from the configuration file */
52 function readVersion() {
53     var fso, cf, ln, s;
54     fso = new ActiveXObject("Scripting.FileSystemObject");
55     cf = fso.OpenTextFile(configFile, 1);
56     while (cf.AtEndOfStream !== true) {
57         ln = cf.ReadLine();
58         s = new String(ln);
59         if (s.search(/^m4_define\(\[libmodbus_version_major/) != -1) {
60             verMajor = s.substr(s.indexOf(",") + 3, 1);
61         } else if (s.search(/^m4_define\(\[libmodbus_version_minor/) != -1) {
62             verMinor = s.substr(s.indexOf(",") + 3, 1);
63         } else if (s.search(/^m4_define\(\[libmodbus_version_micro/) != -1) {
64             verMicro = s.substr(s.indexOf(",") + 3, 1);
65         }
66     }
67     cf.Close();
70 /* create the versioned file */
71 function createVersionedFile(newfile, unversioned) {
72     var fso, ofi, of, ln, s;
73     fso = new ActiveXObject("Scripting.FileSystemObject");
74     ofi = fso.OpenTextFile(unversioned, 1);
75     if (!dryRun) {
76         of = fso.CreateTextFile(newfile, true);
77     }
78     while (ofi.AtEndOfStream !== true) {
79         ln = ofi.ReadLine();
80         s = new String(ln);
81         if (!dryRun && s.search(/\@LIBMODBUS_VERSION_MAJOR\@/) != -1) {
82             of.WriteLine(s.replace(/\@LIBMODBUS_VERSION_MAJOR\@/, verMajor));
83         } else if (!dryRun && s.search(/\@LIBMODBUS_VERSION_MINOR\@/) != -1) {
84             of.WriteLine(s.replace(/\@LIBMODBUS_VERSION_MINOR\@/, verMinor));
85         } else if (!dryRun && s.search(/\@LIBMODBUS_VERSION_MICRO\@/) != -1) {
86             of.WriteLine(s.replace(/\@LIBMODBUS_VERSION_MICRO\@/, verMicro));
87         } else if (!dryRun && s.search(/\@LIBMODBUS_VERSION\@/) != -1) {
88             of.WriteLine(
89                 s.replace(
90                     /\@LIBMODBUS_VERSION\@/,
91                     verMajor + "." + verMinor + "." + verMicro
92                 )
93             );
94         } else {
95             if (!dryRun) {
96                 of.WriteLine(ln);
97             }
98         }
99     }
100     ofi.Close();
101     if (!dryRun) {
102         of.Close();
103     }
107  * main(),
108  * Execution begins here.
109  */
111 // Parse the command-line arguments.
112 for (i = 0; i < WScript.Arguments.length && error === 0; i++) {
113     var arg, opt;
114     arg = WScript.Arguments(i);
115     opt = arg.substring(0, arg.indexOf("="));
116     if (opt.length > 0) {
117         if (opt == "dry-run") {
118             var str = arg.substring(opt.length + 1, arg.length);
119             if (opt == 1 || opt == "yes") {
120                 dryRun = true;
121             }
122         } else if (opt == "compiler") {
123             compiler = arg.substring(opt.length + 1, arg.length);
124         } else {
125             error = 1;
126         }
127     } else if (i === 0) {
128         if (arg == "help") {
129             usage();
130             WScript.Quit(0);
131         }
132     } else {
133         error = 1;
134     }
137 // If we fail here, it is because the user supplied an unrecognised argument.
138 if (error !== 0) {
139     usage();
140     WScript.Quit(error);
143 // Read the the version.
144 readVersion();
145 if (error !== 0) {
146     WScript.Echo("Version discovery failed, aborting.");
147     WScript.Quit(error);
150 newfile = srcDir + "\\modbus-version.h";
151 createVersionedFile(newfile, srcDir + "\\modbus-version.h.in");
152 if (error !== 0) {
153     WScript.Echo("Creation of " + newfile + " failed, aborting.");
154     WScript.Quit(error);
156 WScript.Echo(newfile + " created.");
158 newfile = "modbus.dll.manifest";
159 createVersionedFile(newfile, "modbus.dll.manifest.in");
160 if (error !== 0) {
161     WScript.Echo("Creation of " + newfile + " failed, aborting.");
162     WScript.Quit(error);
164 WScript.Echo(newfile + " created.");
166 newfile = "config.h";
167 createVersionedFile(newfile, "config.h.win32");
168 if (error !== 0) {
169     WScript.Echo("Creation of " + newfile + " failed, aborting.");
170     WScript.Quit(error);
172 WScript.Echo(newfile + " created.");
174 WScript.Echo("\nLibmodbus configuration completed\n");