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

  inherit (import ../../lib) compileC findIncludes link;

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

  body = [hello];
}