Custom game engine built in C++ using glfw.
- CMake (3.16 or higher)
- C++ compiler with C++11 support
- GLFW and GLAD (included in project)
Simply run the batch file at the project root:
.\build.bat- Create a build directory:
mkdir build
cd build- Generate build files:
cmake ..- Build the project:
cmake --build .cpp-game-engine/
├── include/ # Header files
├── src/ # Source files
├── thirdparty/ # External dependencies
│ ├── glad/ # OpenGL loader
│ └── glfw-3.3.2/ # Window management
├── CMakeLists.txt # Build configuration
└── build.bat # Windows build script
If you encounter any issues:
- Make sure all prerequisites are installed
- Clean the build directory and rebuild
- Check that your graphics drivers are up to date
MIT License