geode/loader
2024-09-28 13:17:23 -04:00
..
hash check hash for downloaded mods 2024-07-20 18:16:06 -03:00
include test 2024-09-28 13:17:23 -04:00
launcher remove 2 redundant casts cuz like why 2024-09-12 18:02:30 +02:00
resources add persistent folder button 2024-09-14 12:41:23 +03:00
src shut the fuck up 2024-09-21 15:36:46 +03:00
test cleanup many creates promoting better modern c++ coding practices 2024-06-23 11:36:16 +02:00
CMakeLists.txt update minizip-ng to latest commit 2024-07-25 05:43:38 -07:00
README.md

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