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
- Host: GitHub
- URL: https://github.com/leoovs/xuzumi
- Owner: leoovs
- License: mit
- Created: 2024-06-01T10:41:52.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-09-25T14:38:20.000Z (8 months ago)
- Last Synced: 2024-11-08T04:28:57.581Z (6 months ago)
- Topics: cpp, game-engine, opengl
- Language: CMake
- Homepage:
- Size: 685 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
)
```