summaryrefslogtreecommitdiff
path: root/mbgl.gyp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-07-16 19:00:49 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-07-16 19:00:49 -0700
commit55dce57896341d0f4e35a344cc64944e4b505c10 (patch)
tree27bb677cc747ff3b97cc04b56e343403351f295d /mbgl.gyp
parent4ea281c750c5afcc68f2832bb42d98a1cbce6735 (diff)
downloadqtlocation-mapboxgl-55dce57896341d0f4e35a344cc64944e4b505c10.tar.gz
rename a few things from mbgl => mapboxgl
Diffstat (limited to 'mbgl.gyp')
-rw-r--r--mbgl.gyp224
1 files changed, 0 insertions, 224 deletions
diff --git a/mbgl.gyp b/mbgl.gyp
deleted file mode 100644
index 749ee8be35..0000000000
--- a/mbgl.gyp
+++ /dev/null
@@ -1,224 +0,0 @@
-{
- 'includes': [
- './common.gypi',
- './config.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'shaders',
- 'type': 'none',
- 'hard_dependency': 1,
- 'actions': [
- {
- 'action_name': 'Build Shaders',
- 'inputs': [
- '<!@(find src -name "*.glsl")'
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/include/mbgl/shader/shaders.hpp',
- '<(SHARED_INTERMEDIATE_DIR)/src/shader/shaders_gl.cpp',
- '<(SHARED_INTERMEDIATE_DIR)/src/shader/shaders_gles2.cpp',
- ],
- 'action': ['<@(node)', 'bin/build-shaders.js', '<(SHARED_INTERMEDIATE_DIR)'],
- }
- ],
- 'direct_dependent_settings': {
- 'sources': [
- '<(SHARED_INTERMEDIATE_DIR)/include/mbgl/shader/shaders.hpp',
- '<(SHARED_INTERMEDIATE_DIR)/src/shader/shaders_gl.cpp',
- '<(SHARED_INTERMEDIATE_DIR)/src/shader/shaders_gles2.cpp'
- ],
- 'include_dirs':[
- '<(SHARED_INTERMEDIATE_DIR)/include/',
- ]
- }
- },
- {
- 'target_name': 'build_stylesheet',
- 'type': 'none',
- 'hard_dependency': 1,
- 'actions': [
- {
- 'action_name': 'Build Stylesheet',
- 'inputs': [
- 'bin/style.js',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/bin/style.min.js'
- ],
- 'action': ['<@(node)', 'bin/build-style.js', '<@(_inputs)', '<(SHARED_INTERMEDIATE_DIR)']
- }
- ],
- 'direct_dependent_settings': {
- 'sources': [
- '<(SHARED_INTERMEDIATE_DIR)/bin/style.min.js'
- ],
- }
- },
- {
- 'target_name': 'copy_default_stylesheet',
- 'type': 'none',
- 'hard_dependency': 1,
- 'dependencies': [
- 'build_stylesheet'
- ],
- 'copies': [
- {
- 'files': [ '<(SHARED_INTERMEDIATE_DIR)/bin/style.min.js' ],
- 'destination': '<(PRODUCT_DIR)'
- }
- ]
- },
- {
- 'target_name': 'copy_certificate_bundle',
- 'type': 'none',
- 'hard_dependency': 1,
- 'copies': [
- {
- 'files': [ 'common/ca-bundle.crt' ],
- 'destination': '<(PRODUCT_DIR)'
- }
- ]
- },
- {
- 'target_name': 'mbgl-x86',
- 'product_name': 'mbgl-x86',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'dependencies': [
- 'build_stylesheet',
- 'shaders',
- ],
- 'sources': [
- '<!@(find src -name "*.cpp")',
- '<!@(test -f "config/constants_local.cpp" && echo "config/constants_local.cpp" || echo "config/constants.cpp")',
- '<!@(find src -name "*.c")',
- '<!@(find src -name "*.h")',
- '<!@(find include -name "*.hpp")',
- '<!@(find include -name "*.h")',
- '<!@(find src -name "*.glsl")',
- 'bin/style.js'
- ],
- 'xcode_settings': {
- 'SDKROOT': 'macosx',
- 'SUPPORTED_PLATFORMS':['macosx'],
- 'MACOSX_DEPLOYMENT_TARGET':'10.9',
- 'PUBLIC_HEADERS_FOLDER_PATH': 'include',
- 'OTHER_CPLUSPLUSFLAGS':[
- '<@(png_cflags)',
- '<@(uv_cflags)',
- '-I<(boost_root)/include',
- ]
- },
- 'include_dirs':[
- './include'
- ],
- 'cflags': [
- '<@(png_cflags)',
- '-I<(boost_root)/include',
- ],
- 'direct_dependent_settings': {
- 'include_dirs':[
- './include',
- ],
- 'cflags': [
- '<@(png_cflags)',
- '<@(uv_cflags)',
- ],
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS':[
- '<@(png_cflags)',
- '<@(uv_cflags)',
- ]
- },
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_LDFLAGS': [
- '<@(png_libraries)',
- '<@(uv_libraries)',
- ]
- }
- }, {
- 'libraries': [
- '<@(png_libraries)',
- '<@(uv_libraries)',
- ]
- }]
- ]
- }
- },
- {
- 'target_name': 'mbgl-ios',
- 'product_name': 'mbgl-ios',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'dependencies': [
- 'build_stylesheet',
- 'shaders',
- ],
- 'sources': [
- '<!@(find src/ \( -name "*.cpp" ! -name shaders.hpp ! -name shaders_gles2.cpp ! -name shaders_gl.cpp \))',
- '<!@(test -f "config/constants_local.cpp" && echo "config/constants_local.cpp" || echo "config/constants.cpp")',
- '<!@(find src -name "*.c")',
- '<!@(find src -name "*.h")',
- '<!@(find include -name "*.hpp")',
- '<!@(find include -name "*.h")',
- '<!@(find src -name "*.glsl")',
- 'bin/style.js'
- ],
- 'xcode_settings': {
- 'SDKROOT': 'iphoneos',
- 'SUPPORTED_PLATFORMS':['iphonesimulator','iphoneos'],
- 'TARGETED_DEVICE_FAMILY': '1,2',
- 'CODE_SIGN_IDENTITY': 'iPhone Developer',
- 'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
- 'PUBLIC_HEADERS_FOLDER_PATH': 'include',
- 'GCC_INPUT_FILETYPE':'sourcecode.cpp.cpp',
- 'OTHER_CPLUSPLUSFLAGS':[
- '<@(png_cflags)',
- '<@(uv_cflags)',
- '-I<(boost_root)/include',
- ]
- },
- 'include_dirs':[
- './include'
- ],
- 'cflags': [
- '<@(png_cflags)',
- '<@(uv_cflags)',
- '-I<(boost_root)/include',
- ],
- 'direct_dependent_settings': {
- 'include_dirs':[
- './include'
- ],
- 'cflags': [
- '<@(png_cflags)',
- '<@(uv_cflags)',
- ],
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS':[
- '<@(png_cflags)',
- '<@(uv_cflags)',
- ]
- },
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_LDFLAGS': [
- '<@(png_libraries)',
- '<@(uv_libraries)',
- ]
- }
- }, {
- 'libraries': [
- '<@(png_libraries)',
- '<@(uv_libraries)'
- ]
- }]
- ]
- }
- }
- ]
-} \ No newline at end of file