summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-12-11 18:31:32 +0100
committerKonstantin Käfer <mail@kkaefer.com>2014-12-11 18:31:32 +0100
commit41d9e7730f8e430a08a0181912e2f4749bff112d (patch)
treec4af7f398791549ee09272757e82ae2e42b1a59a /Makefile
parent8b5bba08b31e854caadfa31a4a2cf465353f0fd5 (diff)
downloadqtlocation-mapboxgl-41d9e7730f8e430a08a0181912e2f4749bff112d.tar.gz
add xcode project for render cli util
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 740fc0a393..d429903db9 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ build/macosx/Makefile: macosx/mapboxgl-app.gyp config.gypi
.PHONY: build/render/Makefile
build/render/Makefile: bin/render.gyp config.gypi
- deps/run_gyp bin/render.gyp -Iconfig.gypi -Dplatform=osx --depth=. -Goutput_dir=.. --generator-output=./build/render -f make
+ deps/run_gyp bin/render.gyp -Iconfig.gypi -Dplatform=$(PLATFORM) --depth=. -Goutput_dir=.. --generator-output=./build/render -f make
.PHONY: build/test/test.xcodeproj
build/test/test.xcodeproj: test/test.gyp config.gypi
@@ -73,6 +73,10 @@ build/ios/mapbox-gl-cocoa/app/mapboxgl-app.xcodeproj: ios/mapbox-gl-cocoa/app/ma
build/linux/mapboxgl-app.xcodeproj: linux/mapboxgl-app.gyp config.gypi
deps/run_gyp linux/mapboxgl-app.gyp -Iconfig.gypi -Dplatform=linux --depth=. --generator-output=./build -f xcode
+.PHONY: build/bin/render.xcodeproj
+build/bin/render.xcodeproj: bin/render.gyp config.gypi
+ deps/run_gyp bin/render.gyp -Iconfig.gypi -Dplatform=$(PLATFORM) --depth=. --generator-output=./build -f xcode
+
##### Test cases ###############################################################
test: build/test/Makefile
@@ -128,6 +132,9 @@ xproj: build/macosx/mapboxgl-app.xcodeproj
iproj: build/ios/mapbox-gl-cocoa/app/mapboxgl-app.xcodeproj
open ./build/ios/mapbox-gl-cocoa/app/mapboxgl-app.xcodeproj
+rproj: build/bin/render.xcodeproj
+ open ./build/bin/render.xcodeproj
+
# build Linux project for Xcode (Runs on Mac OS X too, but without platform-specific code)
lproj: build/linux/mapboxgl-app.xcodeproj
open ./build/linux/mapboxgl-app.xcodeproj