blob: 521af7e89fc4c54cf17680dcaf7844a52094273a (
plain) (
tree)
|
|
with import ../../lib;
let {
hello = link {programName = "hello"; objects = compileC {
main = ./foo/hello.c;
localIncludes = "auto";
};};
# body = findIncludes {main = ./foo/hello.c;};
body = [hello];
}
|