geode/loader
dankmeme01 71f56ef49e
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
Check CHANGELOG.md / Check CHANGELOG.md (push) Waiting to run
add XInputSetState export in proxy loader, fixing certain steam emus
2024-11-13 14:59:12 +01:00
..
hash check hash for downloaded mods 2024-07-20 18:16:06 -03:00
include allow sending progress from Task coroutines by using co_yield 2024-11-12 12:23:50 -03:00
launcher add XInputSetState export in proxy loader, fixing certain steam emus 2024-11-13 14:59:12 +01:00
resources add option for single-page local mods list 2024-11-10 12:17:14 +02:00
src add check for gd version in DynamicCastFix.cpp 2024-11-13 10:41:13 -03:00
test matjson status 1/? 2024-11-09 09:05:21 +03:00
CMakeLists.txt update minizip-ng to latest commit 2024-07-25 05:43:38 -07:00
README.md whole of geode except without history 2022-07-30 19:24:03 +03:00

Loader

Repository for the Geode Mod Loader

Documentation

See docs

Building

Prerequisites:

Quick instructions (for thigh-high programmers)

  1. git clone

  2. mkdir build; cd build; cmake .. -T host=x64 -A win32

  3. cmake --build

  1. Install VS Code

  2. Install the C/C++ and CMake Tools extensions for VS Code

  3. Open up the command line and navigate to any directory where you'd like to build the loader

  4. git clone https://github.com/geode-sdk/loader --recurse-submodules

  5. Open up the directory in VS Code

  6. Press F1 to open the Command Palette and run CMake: Configure (make sure to select an x86 generator)

  7. Open up the Command Palette again and run CMake: Select Variant (select either Release or RelWithDebInfo)

  8. Click Build on the bottom status bar or run CMake: Build