cmake-ts
Version:
cmake-js rewrite in typescript to support advanced build configurations
11 lines (10 loc) • 409 B
TypeScript
import memoizee from "memoizee";
export declare const getCmakeGenerator: ((cmake: string, os: NodeJS.Platform, arch: NodeJS.Architecture) => Promise<{
generator?: string;
generatorFlags?: string[];
binary?: string;
}>) & memoizee.Memoized<(cmake: string, os: NodeJS.Platform, arch: NodeJS.Architecture) => Promise<{
generator?: string;
generatorFlags?: string[];
binary?: string;
}>>;