Home

Awesome

This repository is no longer active!

This repository has been merged with the main premake-core source code. It will be deleted once everyone has had a chance to get switched over to the new location (probably Jan 2017).


Premake Extension to support the D language

Features

Usage

Simply add:

language "D"

to your project definition and populate with .d files.

APIs

Example

The contents of your premake5.lua file would be:

solution "MySolution"
    configurations { "release", "debug" }

    project "MyDProject"
        kind "ConsoleApp"
        language "D"
        files { "src/main.d", "src/extra.d" }