Skip to content

Instantly share code, notes, and snippets.

@vmaks
Last active April 26, 2016 18:53
Show Gist options
  • Save vmaks/bc09aa226272eb5f810e to your computer and use it in GitHub Desktop.
Save vmaks/bc09aa226272eb5f810e to your computer and use it in GitHub Desktop.
djini_windows

For windows only!

Install guide

  1. Install MinGW (http://www.mingw.org/) or Git (https://git-scm.com/). That is you will get "sh.exe".

  2. Add path to the system variables: System / Advanced System Settings / Enviroment Variables.

  • For MINGW: MINGW\bin
  • For Git: Git\bin
  1. Follow the Stephen Spann tutorials guideline from here: http://mobilecpptutorials.com/

"Your First Cross-Platform Djinni App: Part 1, C++ / Install 3rd Party Dependencies" but instead of

git init
git submodule add https://github.com/dropbox/djinni.git deps/djinni
git submodule add https://chromium.googlesource.com/external/gyp.git deps/gyp

use

git init
git submodule add https://github.com/vmaks/djinni
git submodule add https://chromium.googlesource.com/external/gyp.git deps/gyp
  1. From Command Prompt run the following command:
sh run_djinni.sh

Additional notes

If you got any errors check sh by entering the following command in Command Prompt:

sh

You should get something like that as output:

sh-3.1$

That is the version of sh.exe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment