liftoff 0.1.1

Get your coding project off the ground fast. See repo
Documentation
language = "c++" # must match gitignore.io specification

directories = [
    {
        name = "include/$(project)"
    },
    {
        name = "scripts"
    },
    {
        name = "build"
    },
    {
        name = "docs",
    },
    {
        name = "tests",
        file = {
            name = "test.cpp"
        }
    },
    {
        name = "src",
        file = {
            name = "$(project).cpp",
            content = "int main(void) {\n    return 0;\n}"
        }
    }
]

files = [
    {
        name = "CMakeLists.txt",
        content = "project($(project))\n\nadd_executable($(project) src/$(project).cpp)"
    },
    {
        name = "README.md",
        content = "# $(project) - Testing kick"
    },
]