This project uses CMake (minimum version 3.2), you can download it here or use your favorite installation package tool like homebrew.
brew install cmake
Make sure to update git submodules before you build with Make:
git submodule update --init
The demo application uses the Nextzen vector tile service, so you will need a Nextzen API key to build and run the demo.
-
Visit https://developers.nextzen.org/ to get an API key.
-
Setup an environment variable (
NEXTZEN_API_KEY
) to point to your API key. If you are using an IDE on osx, you need to do the following:launchctl setenv NEXTZEN_API_KEY YOUR_API_KEY
If you are running the app from a terminal you need to do the following:
bash export NEXTZEN_API_KEY=YOUR_API_KEY
There are several ways you can build the tangram-es library and demo application on Mac OS X:
To build a runnable OS X application bundle, run:
make osx
You can optionally use make -j
to parallelize the build and append a BUILD_TYPE
variable to choose the build type, for example BUILD_TYPE=Debug
.
Then open the application with:
open build/osx/bin/tangram.app
To open the application with console logs:
open build/osx/bin/tangram.app/Contents/MacOS/tangram
You can open a different YAML scene file by dragging and dropping it into the window, or passing it as an argument:
open build/osx/bin/tangram.app/Contents/MacOS/tangram -f /path/to/your/scene.yaml
For running on OS X from Xcode you will need Xcode version 6.0 or higher. Generate and compile an Xcode project:
make xcode
Then just open the Xcode project and run/debug from there:
open build/xcode/tangram.xcodeproj
Note that any Xcode configuration change you make to the project won't be preserved when CMake runs again. Build configuration is defined only in the CMakeLists file(s).
You can also run and debug from CLion.
After cloning and updating your git submodules, open CLion and Import Project from Sources. Select the root of this repo. Choose Open Project. Do not overwrite CMakeLists.txt.
CLion will automatically set everything up, all you have to do is wait a minute for the project to get initialized. Then, select the 'tangram' run configuration and hit run/debug.