From 0d5568f7248d489c6081c217f2c21e56fb12e5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Tue, 21 Apr 2015 11:57:08 +0200 Subject: merge build targets so we only have one build file per platform previously, we used multiple different projects for various targets (app, test, render) that overwrote each other, so it was impossible to have one project to build them all, one project to compile them, one project to run them all and in the darkness bind them --- gyp/project.gyp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gyp/project.gyp (limited to 'gyp') diff --git a/gyp/project.gyp b/gyp/project.gyp new file mode 100644 index 0000000000..9f53eef510 --- /dev/null +++ b/gyp/project.gyp @@ -0,0 +1,19 @@ +{ + 'conditions': [ + ['host == "osx"', { + 'includes': [ + '../macosx/mapboxgl-app.gypi', + '../linux/mapboxgl-app.gypi', + '../test/test.gypi', + '../bin/render.gypi', + ] + }], + ['host == "linux"', { + 'includes': [ + '../linux/mapboxgl-app.gypi', + '../test/test.gypi', + '../bin/render.gypi', + ] + }], + ], +} -- cgit v1.2.1