gout

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

.gn (715B)


      1 # The location of the build configuration file.
      2 buildconfig = "//build/BUILDCONFIG.gn"
      3 
      4 # The secondary source root is a parallel directory tree where GN build files
      5 # are placed when they can not be placed directly in the source tree, e.g. for
      6 # third party source trees.
      7 secondary_source = "//secondary/"
      8 
      9 # Targets that should be included in the compile_commands.json output file.
     10 export_compile_commands = [
     11   "//*",
     12 ]
     13 
     14 # TODO(cbracken): remove personal include, lib dirs.
     15 # Edit as appropriate for the host system.
     16 default_args = {
     17   system_include_dirs = [
     18     "/usr/local/include",
     19     "/Users/chris/.homebrew/include",
     20   ]
     21   system_lib_dirs = [
     22     "/usr/local/lib",
     23     "/Users/chris/.homebrew/lib",
     24   ]
     25 }