configuration methods add :check_d_import_path option to check_d_import configuration method - #107
11 lines
212 B
Ruby
11 lines
212 B
Ruby
configure do
|
|
check_c_header "string.h", check_cpppath: ["./usr1"]
|
|
check_c_header "frobulous.h", check_cpppath: ["./usr2"]
|
|
end
|
|
|
|
build do
|
|
Environment.new do |env|
|
|
env.Object("test.o", "test.c")
|
|
end
|
|
end
|