rscons/build_tests/library/Rsconscript
2022-01-23 16:44:18 -05:00

7 lines
192 B
Plaintext

default do
Environment.new(echo: :command) do |env|
env.Program('library.exe', ['lib.a', 'three.c'])
env.Library("lib.a", ['one.c', 'two.c'], 'CPPFLAGS' => ['-Dmake_lib'])
end
end