Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2015-05-31 13:02:35 +0300
committerdnobori <da.git@softether.co.jp>2015-05-31 13:02:35 +0300
commitff497063732fdc08300c8bc166f4d4f62317e98a (patch)
treecfadea91c0b83255d9f137e75903031bcb572744 /src/BuildUtil/BuildUtilCommands.cs
parent7785c41f3881f4527705c808c0e2a8d8a6e6d822 (diff)
v4.17-9562-beta
Diffstat (limited to 'src/BuildUtil/BuildUtilCommands.cs')
-rw-r--r--src/BuildUtil/BuildUtilCommands.cs17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/BuildUtil/BuildUtilCommands.cs b/src/BuildUtil/BuildUtilCommands.cs
index bc5e893a..245eaae3 100644
--- a/src/BuildUtil/BuildUtilCommands.cs
+++ b/src/BuildUtil/BuildUtilCommands.cs
@@ -926,6 +926,19 @@ namespace BuildUtil
return 0;
}
+ // Driver package build
+ // Win32 build
+ [ConsoleCommandMethod(
+ "Builds the driver package.",
+ "BuildDriverPackage",
+ "Builds the driver package.")]
+ static int BuildDriverPackage(ConsoleService c, string cmdName, string str)
+ {
+ Win32BuildUtil.MakeDriverPackage();
+
+ return 0;
+ }
+
// Win32 build
[ConsoleCommandMethod(
"Builds all executable files for win32 and HamCore for all OS.",
@@ -1159,14 +1172,16 @@ namespace BuildUtil
{
new ConsoleParam("[targetFileName]", ConsoleService.Prompt, "Target Filename: ", ConsoleService.EvalNotEmpty, null),
new ConsoleParam("OUT", ConsoleService.Prompt, "Dst Filename: ", ConsoleService.EvalNotEmpty, null),
+ new ConsoleParam("PRODUCT"),
new ConsoleParam("RC"),
};
ConsoleParamValueList vl = c.ParseCommandList(cmdName, str, args);
string targetFilename = vl.DefaultParam.StrValue;
string outFilename = vl["OUT"].StrValue;
+ string product_name = vl["PRODUCT"].StrValue;
- Win32BuildUtil.GenerateVersionInfoResource(targetFilename, outFilename, vl["RC"].StrValue);
+ Win32BuildUtil.GenerateVersionInfoResource(targetFilename, outFilename, vl["RC"].StrValue, product_name);
return 0;
}