.gn (662B)
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 # Edit as appropriate for the host system. 15 default_args = { 16 system_include_dirs = [ 17 "/usr/local/include", 18 "/Users/chris/.homebrew/include", 19 ] 20 system_lib_dirs = [ 21 "/usr/local/lib", 22 "/Users/chris/.homebrew/lib", 23 ] 24 }