diff options
Diffstat (limited to 'bin/glfw.gypi')
-rw-r--r-- | bin/glfw.gypi | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/bin/glfw.gypi b/bin/glfw.gypi deleted file mode 100644 index dbf73e5abe..0000000000 --- a/bin/glfw.gypi +++ /dev/null @@ -1,61 +0,0 @@ -{ - 'targets': [ - { - 'target_name': 'glfw-app', - 'product_name': 'mapbox-glfw', - 'type': 'executable', - - 'dependencies': [ - 'core', - 'platform-lib', - 'copy_certificate_bundle', - ], - - 'include_dirs': [ - '../platform/default', - '../include', - '../src', - ], - - 'sources': [ - 'glfw.cpp', - '../platform/default/settings_json.cpp', - '../platform/default/glfw_view.hpp', - '../platform/default/glfw_view.cpp', - '../platform/default/log_stderr.cpp', - ], - - 'variables': { - 'cflags_cc': [ - '<@(glfw_cflags)', - ], - 'ldflags': [ - '<@(glfw_ldflags)', - ], - 'libraries': [ - '<@(glfw_static_libs)', - ], - }, - - 'conditions': [ - ['OS == "mac"', { - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags_cc)' ], - }, - }, { - 'cflags_cc': [ '<@(cflags_cc)' ], - }], - ], - 'link_settings': { - 'conditions': [ - ['OS == "mac"', { - 'libraries': [ '<@(libraries)' ], - 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] } - }, { - 'libraries': [ '<@(libraries)', '<@(ldflags)' ], - }] - ], - }, - }, - ], -} |