Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matcool/small-gd-mods
small collection of mods for geometry dash
https://github.com/matcool/small-gd-mods
dll geometry-dash geometry-dash-mod hooking windows
Last synced: 3 months ago
JSON representation
small collection of mods for geometry dash
- Host: GitHub
- URL: https://github.com/matcool/small-gd-mods
- Owner: matcool
- License: mit
- Created: 2021-04-17T22:45:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-13T20:27:04.000Z (about 2 years ago)
- Last Synced: 2024-05-21T02:25:39.407Z (8 months ago)
- Topics: dll, geometry-dash, geometry-dash-mod, hooking, windows
- Language: C++
- Homepage:
- Size: 273 KB
- Stars: 56
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-geometry-dash - Timestamp Fix - Fixes level uploaded/updated timestamps always showing up as NA ago (Mods)
README
# Small GD Mods
A collection of small utility mods for Geometry Dash# Download
Download for prebuilt DLLs can be found here [https://matcool.github.io/mods](https://matcool.github.io/mods), along with install instructions# Compiling
If for some reason you want to compile this yourself, you'll need Git, CMake and the Visual Studio compiler1. Clone the repo (make sure to do it recursively `--recursive`)
2. Configure CMake
```
cmake -G "Visual Studio 16 2019" -B build -DCMAKE_BUILD_TYPE=Release -T host=x86 -A win32
```
3. Build
```bash
cmake --build build --config Release --target ALL_BUILD
# you can switch out ALL_BUILD for any specific mod you want to compile
```