UNPKG

@specs-feup/clava

Version:

A C/C++ source-to-source compiler written in Typescript

13 lines 393 B
/** * Interface that provides information about a CMake-supported compiler. * */ export default abstract class CMakeCompiler { abstract getCxxCommand(): string; abstract getCCommand(): string; /** * Generates the compiler-related arguments that are required when calling the CMake command. */ getCommandArgs(): string; } //# sourceMappingURL=CMakeCompiler.d.ts.map