// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System.Collections.Generic;
using System.IO;
using Flax.Build;
///
/// https://rapidjson.org/
///
public class rapidjson : HeaderOnlyModule
{
///
public override void Init()
{
base.Init();
LicenseType = LicenseTypes.MIT;
LicenseFilePath = "RapidJSON license.txt";
// Merge third-party modules into engine binary
BinaryModuleName = "FlaxEngine";
}
///
public override void GetFilesToDeploy(List files)
{
base.GetFilesToDeploy(files);
files.AddRange(Directory.GetFiles(FolderPath, "*.h", SearchOption.AllDirectories));
}
}