gitout

A static git page generator
git clone https://git.bracken.jp/gitout.git
Log | Files | Refs | Submodules | README | LICENSE

BUILD.gn (480B)


      1 source_set("index_writer") {
      2   sources = [
      3     "index_writer.c",
      4     "index_writer.h",
      5   ]
      6   configs += [ "//:gitout_config" ]
      7   deps = [
      8     "//writer/gopher:index_writer",
      9     "//writer/html:index_writer",
     10   ]
     11   public_deps = [ "//git" ]
     12 }
     13 
     14 source_set("repo_writer") {
     15   sources = [
     16     "repo_writer.c",
     17     "repo_writer.h",
     18   ]
     19   configs += [ "//:gitout_config" ]
     20   deps = [
     21     "//writer/gopher:repo_writer",
     22     "//writer/html:repo_writer",
     23   ]
     24   public_deps = [ "//git" ]
     25 }