You're breathtaking!
This commit is contained in:
40
Source/ThirdParty/curl/curl.Build.cs
vendored
Normal file
40
Source/ThirdParty/curl/curl.Build.cs
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
|
||||
|
||||
using System.IO;
|
||||
using Flax.Build;
|
||||
using Flax.Build.NativeCpp;
|
||||
|
||||
/// <summary>
|
||||
/// https://curl.haxx.se/
|
||||
/// </summary>
|
||||
public class curl : DepsModule
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void Init()
|
||||
{
|
||||
base.Init();
|
||||
|
||||
LicenseType = LicenseTypes.Custom;
|
||||
LicenseFilePath = "curl License.txt";
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override void Setup(BuildOptions options)
|
||||
{
|
||||
base.Setup(options);
|
||||
|
||||
var depsRoot = options.DepsFolder;
|
||||
switch (options.Platform.Target)
|
||||
{
|
||||
case TargetPlatform.Windows:
|
||||
options.PublicDefinitions.Add("CURL_STATICLIB");
|
||||
options.OutputFiles.Add(Path.Combine(depsRoot, "libcurl.lib"));
|
||||
options.OptionalDependencyFiles.Add(Path.Combine(depsRoot, "libcurl.pdb"));
|
||||
options.OutputFiles.Add("ws2_32.lib");
|
||||
options.OutputFiles.Add("wldap32.lib");
|
||||
options.OutputFiles.Add("crypt32.lib");
|
||||
break;
|
||||
default: throw new InvalidPlatformException(options.Platform.Target);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user