5 lines
162 B
Plaintext
5 lines
162 B
Plaintext
Rscons::Environment.new(echo: :command) do |env|
|
|
env.Object("one.o", "one.c", 'CPPFLAGS' => ['-DONE'])
|
|
env.Program('two_sources.exe', ['one.o', 'two.c'])
|
|
end
|