Add env() method to create environments. Process all environments created at build script top level before executing any autoconf-enabled tasks, or if no tasks are specified by the user.
8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
configure do
|
|
check_d_compiler "gdc"
|
|
end
|
|
|
|
env(echo: :command) do |env|
|
|
env.Program("hello-d.exe", glob("*.d"))
|
|
end
|