Open source game engine
This game engine is being developed to make it easier for developers to create simulators. The game engine is absolutely free for use.
- MIT License
Step 1: Clone repository to your computer and switch to the "Architect2.0" branch Step 2: In Visual Studio build project as you need(Debug or Release) Step 3: Enjoy
Step 1: Clone the repo
git clone https://github.com/Quark-Hell/Alpha_Engine.git --branch Architect2.0
Step 2: Go to the Engine source directory and create build folder. Then generate cmake files(I use ninja as generator and clang as compiler, but make will work too):
cd Alpha_Engine/ALPHA_Engine
mkdir build
cmake -G "Ninja" -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_COMPILER=clang -D CMAKE_CXX_COMPILER=clang++ -B build
Step 3: Build engine
cd build
ninja
Done
Folder "Build" contains files needed for linking with your project External dependencies do not included. Check this repo for download it Or check folder "build/Examples/external" if you build with it
