Skip to content

jnsmalm/gameplay-deprecated

Repository files navigation

Gameplay.js

Build Status Build status

Gameplay.js is a JavaScript runtime for desktop games. It does not run inside a web browser, instead it runs as a native application on the current platform (OS X or Windows). See website at gameplayjs.com

Build instructions

#####1. Get source

git clone https://github.com/jnsmalm/gameplay.git

#####2. Get precompiled libs for V8 V8 is the JavaScript engine from Google used by Gameplay. The precompiled libraries for V8 needs to be downloaded and installed before building Gameplay.

Unpack the archive and copy the contents to gameplay/deps/v8/lib.

#####3. Build Gameplay uses the CMake build system which can generate many different workspaces. Visual Studio 2015 in Windows and Make in OS X has been tested.

cd gameplay && mkdir build && cd build && cmake .. && make