https://github.com/matcool/gd-mod-cpm-template
geometry dash mod template using CPM.cmake and mat-dash
https://github.com/matcool/gd-mod-cpm-template
geometry-dash geometry-dash-mod
Last synced: 11 months ago
JSON representation
geometry dash mod template using CPM.cmake and mat-dash
- Host: GitHub
- URL: https://github.com/matcool/gd-mod-cpm-template
- Owner: matcool
- Created: 2022-09-17T18:43:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-04T15:38:38.000Z (over 3 years ago)
- Last Synced: 2025-03-26T13:45:43.070Z (12 months ago)
- Topics: geometry-dash, geometry-dash-mod
- Language: C++
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gd-mod-cpm
geometry dash mod template using [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) as a package manager
this also uses [mat-dash](https://github.com/matcool/mat-dash) to make hooking syntax simpler (and mod_main (very nice))
## setup
clone and configure/build with cmake using x86 msvc (too lazy to copy paste the 32 bit clang setup sorry)
### manual setup
if u want to do it in cmd then
```bash
# Configure
cmake -B build -A win32
# Build
cmake --build build --config Release
```
## tip
with how cpm works if you want to avoid recloning the same repo multiple times you can look into [CPM_SOURCE_CACHE](https://github.com/cpm-cmake/CPM.cmake#cpm_source_cache)
## help
for more detailed info for how modding gd works i suggest checking out my [gd-mod-example](https://github.com/matcool/gd-mod-example) repo