5 lines
100 B
Ruby
5 lines
100 B
Ruby
Rscons::Environment.new do |env|
|
|
env["LIBS"] += ["c"]
|
|
env.Program('simple.exe', Dir['*.c'])
|
|
end
|