Skip to content

paullouisageneau/convergence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

158 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Convergence - Multiplayer sandbox game

Convergence is a multiplayer game for browsers and native platforms.

Building

Native executable

$ cmake -B build-native
$ cd build-native
$ make -j2

Browser Wasm executable

Use Emscripten to output a WebAssembly build for browsers. It requires that you have emsdk installed and activated in your environment.

$ cmake -B build-emscripten -DCMAKE_TOOLCHAIN_FILE=$EMSDK/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake
$ cd build-emscripten
$ make -j2