feat(config): ability to include native source code from any path (#10698)

[skip ci]
This commit is contained in:
Nathan Walker
2025-02-18 08:37:04 -08:00
committed by GitHub
parent 11d5e542eb
commit c8bb0d7ccf

View File

@ -39,6 +39,20 @@ interface IConfigIOS extends IConfigPlatform {
* List packages to be included in the iOS build. * List packages to be included in the iOS build.
*/ */
SPMPackages?: Array<IOSSPMPackage>; SPMPackages?: Array<IOSSPMPackage>;
/**
* Include native source code from anywhere
*/
NativeSource?: Array<{
/**
* The folder name which will group these referenced files together in Xcode
*/
name: string;
/**
* The path to the native source code.
* You can also use glob patterns, including directories outside of the project root.
*/
path: string;
}>;
} }
interface IConfigVisionOS extends IConfigIOS {} interface IConfigVisionOS extends IConfigIOS {}