diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/glfw.gypi | 61 | ||||
-rw-r--r-- | bin/offline.gypi | 40 | ||||
-rw-r--r-- | bin/render.gypi | 40 |
3 files changed, 0 insertions, 141 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)' ], - }] - ], - }, - }, - ], -} diff --git a/bin/offline.gypi b/bin/offline.gypi deleted file mode 100644 index 295cbd0a01..0000000000 --- a/bin/offline.gypi +++ /dev/null @@ -1,40 +0,0 @@ -{ - 'targets': [ - { - 'target_name': 'mbgl-offline', - 'product_name': 'mbgl-offline', - 'type': 'executable', - - 'dependencies': [ - 'core', - 'platform-lib', - 'copy_certificate_bundle', - ], - - 'include_dirs': [ - '../include', - '../src', - ], - - 'sources': [ - 'offline.cpp', - ], - - 'cflags_cc': [ - '<@(boost_cflags)', - ], - - 'link_settings': { - 'libraries': [ - '<@(boost_libprogram_options_static_libs)' - ], - }, - - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ - '<@(boost_cflags)', - ], - } - }, - ], -} diff --git a/bin/render.gypi b/bin/render.gypi deleted file mode 100644 index b6ae668981..0000000000 --- a/bin/render.gypi +++ /dev/null @@ -1,40 +0,0 @@ -{ - 'targets': [ - { - 'target_name': 'mbgl-render', - 'product_name': 'mbgl-render', - 'type': 'executable', - - 'dependencies': [ - 'core', - 'platform-lib', - 'copy_certificate_bundle', - ], - - 'include_dirs': [ - '../include', - '../src', - ], - - 'sources': [ - 'render.cpp', - ], - - 'cflags_cc': [ - '<@(boost_cflags)', - ], - - 'link_settings': { - 'libraries': [ - '<@(boost_libprogram_options_static_libs)' - ], - }, - - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ - '<@(boost_cflags)', - ], - } - }, - ], -} |