summaryrefslogtreecommitdiff
path: root/platform/qt/app
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 /platform/qt/app
parente3ee55b28d0b230d054c9718f79a1f6d685cd62b (diff)
downloadqtlocation-mapboxgl-692fe1f3ffc8f4364b39c14aa7d90cec2ff5c0a6.tar.gz
[build] switch to CMake
This is very much a work in progress.
Diffstat (limited to 'platform/qt/app')
-rw-r--r--platform/qt/app/qmapboxgl.gypi58
1 files changed, 0 insertions, 58 deletions
diff --git a/platform/qt/app/qmapboxgl.gypi b/platform/qt/app/qmapboxgl.gypi
deleted file mode 100644
index 22b4e1281e..0000000000
--- a/platform/qt/app/qmapboxgl.gypi
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- 'targets': [
- {
- 'target_name': 'qt-app',
- 'product_name': 'qmapboxgl',
- 'type': 'executable',
-
- 'includes': [
- '../qt.gypi',
- ],
-
- 'dependencies': [
- 'qt-lib',
- ],
-
- 'sources': [
- 'main.cpp',
- 'mapwindow.cpp',
- 'mapwindow.hpp',
- 'source.qrc',
- ],
-
- 'include_dirs': [
- '../include',
- ],
-
- 'variables': {
- 'cflags': [
- '<@(opengl_cflags)',
- '<@(qt_core_cflags)',
- '<@(qt_gui_cflags)',
- '<@(qt_opengl_cflags)',
- '-fPIC',
- # Qt4 generates code with unused variables.
- '-Wno-unused-variable',
- ],
- 'ldflags': [
- '<@(opengl_ldflags)',
- '<@(qt_core_ldflags)',
- '<@(qt_gui_ldflags)',
- '<@(qt_opengl_ldflags)',
- ],
- },
-
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags)' ],
- 'OTHER_LDFLAGS': [ '<@(ldflags)' ],
- },
- }, {
- 'cflags_cc': [ '<@(cflags)' ],
- 'libraries': [ '<@(ldflags)' ],
- }],
- ],
- },
- ],
-}