Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 849 Bytes

File metadata and controls

40 lines (27 loc) · 849 Bytes

MetaReal Compiler version 0.1.0

MetaReal is a powerful, easy-to-use, and flexible programming language designed for the metaverse.

Installation

Setup On Windows

Download and install MSYS2.
Install gcc, cmake, and make in the MSYS2 mingw64 terminal window.

pacman -S gcc cmake make

Rest of the steps are identical between different operating systems.

MetaReal Installation

Go to the project directory and open up a terminal window (MSYS2 mingw64 terminal window in Windows).
Create a directory called build and open it.

mkdir build
cd build

Build the project and make it.

cmake ..
make

Go back to the project directory and run the MetaReal executable file.

cd ..
./MetaReal