about summary refs log tree commit diff
path: root/make/examples/not-so-simple-header-auto/default.nix
blob: 521af7e89fc4c54cf17680dcaf7844a52094273a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
with import ../../lib;

let {

  hello = link {programName = "hello"; objects = compileC {
    main = ./foo/hello.c;
    localIncludes = "auto";
  };};

#  body = findIncludes {main = ./foo/hello.c;};

  body = [hello];
}