An open API service indexing awesome lists of open source software.

https://github.com/leoovs/xuzumi

A work-in-progress C++ game engine
https://github.com/leoovs/xuzumi

cpp game-engine opengl

Last synced: 3 months ago
JSON representation

A work-in-progress C++ game engine

Awesome Lists containing this project

README

        

# Xuzumi

### Prerequisites
* A __C++17__ confirming compiler
* MinGW-w64 (at least v13.2.0)
* Clang (at least v16.0.5)
* Visual Studio 2022
* __CMake__ (at least v3.19)

### How to integrate
The preferred way to integrate is to use __CMake__ and [__CPM__](https://github.com/cpm-cmake/CPM.cmake).
```CMake
CPMAddPackage("gh:leoovs/Xuzumi#master")

target_link_libraries(
your::executable_or_library
PRIVATE
Xuzumi::Engine
)
```