summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-07-26 12:30:20 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-08-05 11:42:22 +0200
commite46b580c672e721a6222c83d3e8c111add18e4f2 (patch)
tree7396477582682b91161c85cba124a5d4dd3d2333 /platform
parent2b590611991f94ecb464905a638730ba5408659b (diff)
downloadqtlocation-mapboxgl-e46b580c672e721a6222c83d3e8c111add18e4f2.tar.gz
[build] unify naming of Makefile targets
`make foo` just builds `make run-foo` builds and runs
Diffstat (limited to 'platform')
-rw-r--r--platform/ios/DEVELOPING.md2
-rw-r--r--platform/ios/bitrise.yml2
-rw-r--r--platform/qt/README.md4
3 files changed, 6 insertions, 2 deletions
diff --git a/platform/ios/DEVELOPING.md b/platform/ios/DEVELOPING.md
index d78518eddd..5ba6871959 100644
--- a/platform/ios/DEVELOPING.md
+++ b/platform/ios/DEVELOPING.md
@@ -108,7 +108,7 @@ To add or update text that the user may see in the iOS SDK:
## Testing
-`make test-ios` builds and runs unit tests of cross-platform code as well as the SDK.
+`make ios-test` builds and runs unit tests of cross-platform code as well as the SDK.
Before you can run unit tests of the cross-platform code on the command line, install ios-sim version 3.2.0 (not any other version):
diff --git a/platform/ios/bitrise.yml b/platform/ios/bitrise.yml
index f87a97b7d6..d610869cb3 100644
--- a/platform/ios/bitrise.yml
+++ b/platform/ios/bitrise.yml
@@ -36,7 +36,7 @@ workflows:
gem install jazzy --no-rdoc --no-ri
export BUILDTYPE=Debug
make ios
- make test-ios
+ make ios-test
- is_debug: 'yes'
- slack:
title: Post to Slack
diff --git a/platform/qt/README.md b/platform/qt/README.md
index e5ec7e3bb0..dcd394ec36 100644
--- a/platform/qt/README.md
+++ b/platform/qt/README.md
@@ -53,6 +53,10 @@ For macOS desktop, you can install Qt 5 via [Homebrew](http://brew.sh):
brew install qt5
+Since Homebrew doesn't add Qt to the path, you'll have to do that manually before running any Make target:
+
+ export PATH=/usr/local/opt/qt5:$PATH
+
We provide the following build targets for our Qt SDK:
### Build instructions