diff options
author | Mike Morris <michael.patrick.morris@gmail.com> | 2015-01-29 18:28:53 -0500 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-02-04 10:49:09 +0100 |
commit | 4b3689d18e2ef12ade8471b2f0c12db7d92a5e8d (patch) | |
tree | 0759071ddef5af086cebe851aa0fd85508f65be1 | |
parent | 9f8ddf2930def65252a28db5cfd7671d7406e3cf (diff) | |
download | qtlocation-mapboxgl-4b3689d18e2ef12ade8471b2f0c12db7d92a5e8d.tar.gz |
fix install.gypi deps
-rw-r--r-- | gyp/install.gypi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gyp/install.gypi b/gyp/install.gypi index f42ffbf238..cd5bdf30d6 100644 --- a/gyp/install.gypi +++ b/gyp/install.gypi @@ -7,12 +7,12 @@ 'hard_dependency': 1, 'dependencies': [ 'core', - '<(headless_lib)', - '<(platform_lib)', - '<(http_lib)', - '<(asset_lib)', - '<(cache_lib)', - 'mbgl-standalone', + 'platform-<(platform_lib)', + 'http-<(http_lib)', + 'asset-<(asset_lib)', + 'cache-<(cache_lib)', + 'headless-<(headless_lib)', + 'standalone', ], 'copies': [ { 'files': [ '<(standalone_product_dir)/libmbgl.a' ], 'destination': '<(install_prefix)/lib' }, |