Compare commits

..

No commits in common. "ba4cf5de71b5f1b81c270da1a4dc0f4ae5005e9d" and "1d7deb164a72b50d760829d119de715f01a853d9" have entirely different histories.

4 changed files with 4 additions and 23 deletions

View File

@ -1,16 +0,0 @@
#name: C/C++ CI
#on:
# push:
# branches: [ "master" ]
#jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: deps
# run: sudo apt install qt6-base-dev qt6-base-private-dev qt6-svg-dev build-essential cmake libxi-dev libxrandr-dev
# - name: make
# run: make -j$(nproc)

View File

@ -1,13 +1,14 @@
all: src/main.cpp src/options.cpp submodules preinstall
cc -Wall -O -std=c++20 src/main.cpp src/options.cpp -o bin/rvz-convert -lstdc++
submodules:
git submodule update --init --recursive --depth=1
cmake -S lib/dolphin -B lib/dolphin/cmake-build
make -C lib/dolphin/cmake-build dolphin-tool
make -C lib/wiimms-iso-tools/project
preinstall: submodules
preinstall:
cp lib/wiimms-iso-tools/project/bin/wit bin/
cp lib/dolphin/cmake-build/Binaries/dolphin-tool bin/

View File

@ -20,13 +20,9 @@ Please use after installing to PATH (`sudo make install`)
### Dependencies:
Note: Most of these are dolphin dependencies. Still working on cutting out the Qt6 dependencies as it's a total PITA to compile the entirety of dolphin.
- Qt6 Base
- Qt6 SVG
- Qt6 qtbase private libraries
- Working compiler toolchain (build-essential)
- GNU Make
- CMake
- Xi
- LibXRandr

View File

@ -1,6 +1,6 @@
#include <getopt.h>
#include <iostream>
#define VERSION "v1.0.0-rc2"
#define VERSION "v1.0.0-rc1"
void version() {
std::cout << "rvz-convert " << VERSION << std::endl;
@ -11,7 +11,7 @@ void version() {
}
void help() {
std::cout << "Usage: rvz-convert [options] file.rvz" << std::endl;
std::cout << "Usage: rvz-convert [options] file.iso" << std::endl;
std::cout << "Options:\n\t-h --help\tDisplay this message" << std::endl;
std::cout << "\t-v --version\tDisplay version information" << std::endl;
}