From ccdbd2c52206dfc35ae98dce0dce902a96f7ae3b Mon Sep 17 00:00:00 2001 From: "epoger@google.com" Date: Thu, 2 Jun 2011 14:38:23 +0000 Subject: create GYP files for these targets: tests, gm, skhello, skimage, skdiff see http://codereview.appspot.com/4536096/ git-svn-id: http://skia.googlecode.com/svn/trunk@1479 2bbb7eff-a529-9590-31e7-b0007b416f81 --- gyp/apptype_console.gypi | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 gyp/apptype_console.gypi (limited to 'gyp/apptype_console.gypi') diff --git a/gyp/apptype_console.gypi b/gyp/apptype_console.gypi new file mode 100644 index 0000000000..b686fa71ef --- /dev/null +++ b/gyp/apptype_console.gypi @@ -0,0 +1,27 @@ +# target_defaults used for executable targets that generate a console app +{ + 'target_defaults': { + 'mac_bundle' : 1, + 'msvs_settings': { + 'VCLinkerTool': { + #Allows for creation / output to console. + #Console (/SUBSYSTEM:CONSOLE) + 'SubSystem': '1', + + #Console app, use main/wmain + 'EntryPointSymbol': 'mainCRTStartup', + + 'AdditionalDependencies': [ + 'OpenGL32.lib', + 'usp10.lib', + ], + }, + }, + }, +} + +# Local Variables: +# tab-width:2 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=2 shiftwidth=2: -- cgit v1.2.3