aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/apptype_console.gypi
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-02 14:38:23 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-02 14:38:23 +0000
commitccdbd2c52206dfc35ae98dce0dce902a96f7ae3b (patch)
treeae24b966fdcba0ea3e469b43857659dde57fdf36 /gyp/apptype_console.gypi
parentf850d096af03a8a15243db43038ba9d94116fd25 (diff)
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
Diffstat (limited to 'gyp/apptype_console.gypi')
-rw-r--r--gyp/apptype_console.gypi27
1 files changed, 27 insertions, 0 deletions
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: