diff options
author | Young Hahn <young@mapbox.com> | 2014-06-01 13:15:36 -0400 |
---|---|---|
committer | Young Hahn <young@mapbox.com> | 2014-06-01 13:15:36 -0400 |
commit | 705ddf68a5957a84c0e96beaf5a6e25b1166dc74 (patch) | |
tree | f81abea00f5e78be83f762ebb7066df6b77cfa42 /linux | |
parent | 2dc03c733c8ea29890a0b050a0c60f6da9d35e21 (diff) | |
download | qtlocation-mapboxgl-705ddf68a5957a84c0e96beaf5a6e25b1166dc74.tar.gz |
Add gyp entry to copy style.min.js to PRODUCT_DIR
Diffstat (limited to 'linux')
-rw-r--r-- | linux/llmr-app.gyp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/linux/llmr-app.gyp b/linux/llmr-app.gyp index 93b08364ed..2310613583 100644 --- a/linux/llmr-app.gyp +++ b/linux/llmr-app.gyp @@ -51,7 +51,22 @@ ], 'dependencies': [ '../llmr.gyp:llmr-x86', + 'default_stylesheet', ], }, + { + 'target_name': 'default_stylesheet', + 'type': 'none', + 'hard_dependency': 1, + 'dependencies': [ + '../llmr.gyp:build_stylesheet' + ], + 'copies': [ + { + 'files': [ '<(SHARED_INTERMEDIATE_DIR)/bin/style.min.js' ], + 'destination': '<(PRODUCT_DIR)' + } + ] + } ], } |