Adding another language to the fray
"Lars Ivar Igesund" <[email protected]>
| Newsgroups | gmane.comp.tools.aap.devel |
|---|---|
| Message-ID | <028501c37228$e113dee0$0200000a@mesmer> |
Hi!
I would like to add native support for the D programming language
to A-A-P. Since it in most ways is quite similar to C/C++, I think
this should be rather easy.
What I have done is this:
Added ("d", "d") to the Filetype list.
Added a default route to default.aap
Added dmd.py to the tools dir
Added a compile action with accompanying rule to default.aap
(the content of the action is almost identical to the c one and
starts like this:
:action compile object,default d
)
Anyway, something is wrong or lacking somewhere, as aap decides
to crash on my action with the message:
action must have two or three arguments
which I mean that it has.
I guess it's a sympton, but I don't know to what.
Anything else I should do to make a simple program work? When
that works, I'll start on the library actions.
Lars Ivar Igesund