Skip to main content
Module

x/buildsystem/mod.ts>Project

Build System for C/C++ projects using Deno and TypeScript
Latest
class Project
extends Target
import { Project } from "https://deno.land/x/buildsystem@0.1.23/mod.ts";

Constructors

new
Project(options: { path: string; name?: string; mode?: ("release" | "debug"); })

Properties

private
_mode: string
private
_name: string
private
_path: string
readonly
mode: string
readonly
name: string
readonly
path: string

Methods

addFile(path: string): void
addFolder(path: string, options?: { exts?: string[]; recursive?: boolean; }): void