This is the repository for the native launcher. The purpose of this launcher is to support multimedia PC's and the Raspberry PI. So that you can play on TV with Gamepad only.
Currently the launcher is in a complete rewrite and not yet usable. The following features will be added: TODO
In the current status it is difficult to help. Since I haven't written a C program in a long time, it would be most helpful if you look over the structure and give me some tips.
You need cmake 3.11 to compile the sources. if your system does not provide this version with the packet manager, the following blog post will help you: How to install the latest version of Cmake
git clone --recurse-submodules https://github.com/hylian-modding/ModLoader64-GUI-Native
cd ModLoader64-GUI-Native
mkdir build
cd build
cmake ..
cmake --build .cross-compile is only tested with ubuntu so far and only creating a win32 exe. For this you need mingw:
sudo apt install g++-mingw-w64-i686 gcc-mingw-w64-i686Then you can compile as follow:
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE="../i686-w64-mingw32.cmake" ...
cmake --build .