~hjd/ubuntu/wily/gyp/debian-merged

« back to all changes in this revision

Viewing changes to test/win/linker-flags/manifest-in-comment.cc

  • Committer: Hans Joachim Desserud
  • Date: 2015-10-31 12:46:59 UTC
  • mfrom: (6.2.6 sid)
  • Revision ID: hans_joachim_desserud-20151031124659-lzxekr6woskh4k0b
Merge latest Debian version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#pragma comment(linker,                                                  \
 
6
                "\"/manifestdependency:type='Win32' "                    \
 
7
                "name='Test.Research.SampleAssembly' version='6.0.0.0' " \
 
8
                "processorArchitecture='X86' "                           \
 
9
                "publicKeyToken='0000000000000000' language='*'\"")
 
10
 
 
11
int main() {
 
12
  return 0;
 
13
}