geode/loader
HJfod 1807f19b51 fix build
- no warning on m_icon = icon in Notification
 - fix mac InternalLoader.cpp using Loader::get()->getLogs instead of log::Logs::list()
2022-11-30 17:46:00 +02:00
..
dobby whole of geode except without history 2022-07-30 19:24:03 +03:00
hash neater 2022-10-14 19:09:33 -03:00
include git is messing with me 2022-11-30 09:43:44 -06:00
launcher fix launcher on mac 2022-11-28 20:30:41 +02:00
lilac automatic resource repair 2022-10-14 16:26:16 -03:00
md4c@e9ff661ff8 add all UI-related stuff from API, including index, nodes, actual ui, 2022-08-01 18:18:03 +03:00
minhook@4a455528f6 now uses MinHook on Windows (😨) 2022-09-01 11:02:14 +03:00
resources remove support for versions prefixed with "v" 2022-11-09 18:01:22 +02:00
src fix build 2022-11-30 17:46:00 +02:00
test GGCP 2022-11-28 20:17:58 +02:00
CMakeLists.txt cleanup 2022-11-30 00:48:06 +02:00
old_cmake.txt whole of geode except without history 2022-07-30 19:24:03 +03: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