No description
Find a file
2024-05-27 21:30:24 -07:00
app improve pipes 2024-05-24 10:04:08 -07:00
lib improve pipes 2024-05-24 10:04:08 -07:00
pipe improve pipes 2024-05-24 10:04:08 -07:00
.gitignore Initial commit 2024-05-09 11:02:08 -07:00
.gitmodules update gitmodules 2024-05-23 18:45:35 -07:00
CMakeLists.txt renamed folders 2024-05-23 18:47:04 -07:00
README.md Update README.md 2024-05-27 21:30:24 -07:00

Vanilla

This is a work-in-progress software clone of the Wii U gamepad. No warranty is provided and everything should be considered alpha at best.


Announcement Video

Compiling (Linux)

Vanilla currently requires the following dependencies:

  • Debian/Ubuntu
    # apt install qt6-base-dev qt6-multimedia-dev libavcodec-dev libavutil-dev libavfilter-dev libsdl2-dev libnl-genl-3-dev isc-dhcp-client
    
  • Arch
    # pacman -S qt6 ffmpeg libnl sdl2 dhclient
    

The build process is otherwise normal for a CMake program:

git clone https://github.com/vanilla-wiiu/vanilla.git
cd vanilla
mkdir build
cd build
cmake ..
cmake --build .