You're breathtaking!
This commit is contained in:
26
Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs
vendored
Normal file
26
Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
|
||||
|
||||
using Flax.Build;
|
||||
using Flax.Build.NativeCpp;
|
||||
|
||||
/// <summary>
|
||||
/// https://github.com/adswerve/universal-analytics-c
|
||||
/// </summary>
|
||||
public class UniversalAnalytics : ThirdPartyModule
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void Init()
|
||||
{
|
||||
base.Init();
|
||||
|
||||
LicenseType = LicenseTypes.BSD3Clause;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override void Setup(BuildOptions options)
|
||||
{
|
||||
base.Setup(options);
|
||||
|
||||
options.PrivateDependencies.Add("curl");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user