10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
configure do
|
|
check_d_compiler "gdc"
|
|
end
|
|
|
|
build do
|
|
Environment.new(echo: :command) do |env|
|
|
env.Program("hello-d.exe", glob("*.d"))
|
|
end
|
|
end
|