| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4bc8e98 commit 4f49e9d
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -122,6 +122,12 @@ | |||
| 122 | 122 | default=None, | |
| 123 | 123 | help='force build to be considered as NOT cross compiled') | |
| 124 | 124 | ||
| 125 | + parser.add_argument('--use-prefix-to-find-headers', | ||
| 126 | + action='store_true', | ||
| 127 | + dest='use_prefix_to_find_headers', | ||
| 128 | + default=None, | ||
| 129 | + help='use the prefix to look for pre-installed headers') | ||
| 130 | + | ||
| 125 | 131 | parser.add_argument('--dest-os', | |
| 126 | 132 | action='store', | |
| 127 | 133 | dest='dest_os', | |
@@ -1249,6 +1255,7 @@ def configure_node(o): | |||
| 1249 | 1255 | o['variables']['debug_node'] = b(options.debug_node) | |
| 1250 | 1256 | o['default_configuration'] = 'Debug' if options.debug else 'Release' | |
| 1251 | 1257 | o['variables']['error_on_warn'] = b(options.error_on_warn) | |
| 1258 | + o['variables']['use_prefix_to_find_headers'] = b(options.use_prefix_to_find_headers) | ||
| 1252 | 1259 | ||
| 1253 | 1260 | host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc() | |
| 1254 | 1261 | target_arch = options.dest_cpu or host_arch | |
| Back | FazBrowse Home | New Git URL |
0 commit comments