@smake/fmt
v2.2.2
Published
Typescript Module Template
Downloads
5
Maintainers
Readme
SMake C++ lib fmt
const { LLVM } = require('@smake/llvm');
const { vscode } = require('@smake/llvm-vscode');
const { LibFmt } = require('@smake/fmt');
const target = 'aarch64-apple-darwin';
const fmt = new LibFmt(target);
const test = new LLVM('test', target);
test.files = ['src/test.cc'];
LibFmt.config(test);
vscode(test);
module.exports = [fmt, test];