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





                                                           

                                               

                 
with import ../../lib;

let {

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

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

  body = [hello];
}