Home | History | Annotate | Download | only in linker-flags
      1 # Copyright 2013 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 {
      6   'targets': [
      7     {
      8       'target_name': 'enable_uac',
      9       'type': 'executable',
     10       'sources': ['hello.cc'],
     11       'msvs_settings': {
     12         'VCManifestTool': {
     13           'EmbedManifest': 'true',
     14         }
     15       },
     16     },
     17     {
     18       'target_name': 'enable_uac_no',
     19       'type': 'executable',
     20       'sources': ['hello.cc'],
     21       'msvs_settings': {
     22         'VCLinkerTool': {
     23           'EnableUAC': 'false',
     24         },
     25         'VCManifestTool': {
     26           'EmbedManifest': 'true',
     27         }
     28       },
     29     },
     30     {
     31       'target_name': 'enable_uac_admin',
     32       'type': 'executable',
     33       'sources': ['hello.cc'],
     34       'msvs_settings': {
     35         'VCLinkerTool': {
     36           'UACExecutionLevel': 2,
     37           'UACUIAccess': 'true',
     38         },
     39         'VCManifestTool': {
     40           'EmbedManifest': 'true',
     41         }
     42       },
     43     },
     44   ]
     45 }
     46