summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-06-03 18:05:04 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-08-05 11:42:22 +0200
commit692fe1f3ffc8f4364b39c14aa7d90cec2ff5c0a6 (patch)
tree1d08af7d56e986dba2b548ff9b9a7e1a77c713ed /bin
parente3ee55b28d0b230d054c9718f79a1f6d685cd62b (diff)
downloadqtlocation-mapboxgl-692fe1f3ffc8f4364b39c14aa7d90cec2ff5c0a6.tar.gz
[build] switch to CMake
This is very much a work in progress.
Diffstat (limited to 'bin')
-rw-r--r--bin/glfw.gypi61
-rw-r--r--bin/offline.gypi40
-rw-r--r--bin/render.gypi40
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)',
- ],
- }
- },
- ],
-}