A new language like Java but without any more code!
First, you need CMake(>=3.21) and CPP environment.
-
CPP environment First, run
g++ -vto detect if CPP environment is already installed. If system cannot findg++command, you should install it.- Windows MinGW - Downloads - MinGW-w64
- MacOS You can install xcode for CPP environment, Download XCode here.
- Unix/Linux
Simplest, you can run these command to install GCC.
# debian sudo apt install gcc # centos sudo yum install gcc # arch sudo pacman -S gcc
-
CMake
Run
cmake -vto detect if CMake is installed. if not,go to website to Download CMake.
cd path/to/src # cd to working dictionary
mkdir bin && cd bin
cmake -G"XXXX" .. # Choose the makefile format you like
cmake --build .When you choose the makefiles format:
- Unix/Linux/MacOS => "CodeBlocks - Unix Makefiles"
- Windows => "CodeBlocks - MinGW Makefiles"
Then, you have got the Tea_TimerVM release!