Nuke.Unreal
Build Unreal apps in Style.
Loading...
Searching...
No Matches
XRepoLibraryRecord.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5
7
8public record XRepoLibraryRecord(
9 LibrarySpec Spec,
10 string Options,
11 string OptionsHelp,
12 string? Description,
13 IEnumerable<string> IncludePaths,
14 IEnumerable<string> SysIncludePaths,
15 IEnumerable<string> LibFiles,
16 IEnumerable<string> SysLibs,
17 IEnumerable<string> Defines
18);