premake / premake-core

Premake
https://premake.github.io/
BSD 3-Clause "New" or "Revised" License
3.21k stars 618 forks source link

"Unsupported language 'D'" on Linux #1856

Closed o3o closed 2 years ago

o3o commented 2 years ago

premake complained about the D language

My script (copied from here)

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

    project "MyDProject"
        kind "ConsoleApp"
        language "D"
        files { "src/app.d"}
> premake5 gmake2
Building configurations...
** Warning: Unsupported language 'D' used for project 'MyDProject'
Running action 'gmake2'...
Done (23ms).
$ premake5 --version
premake5 (Premake Build Script Generator) 5.0.0-beta1

Thank you very much.

samsinsane commented 2 years ago

D is only supported with the gmake action (and the VS actions) not the gmake2 action. We're happy to accept PRs that add gmake2 support to the D module.

o3o commented 2 years ago

Thank you very much