Compare commits
No commits in common. "ba4cf5de71b5f1b81c270da1a4dc0f4ae5005e9d" and "1d7deb164a72b50d760829d119de715f01a853d9" have entirely different histories.
ba4cf5de71
...
1d7deb164a
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
@ -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)
|
|
3
Makefile
3
Makefile
@ -1,13 +1,14 @@
|
|||||||
all: src/main.cpp src/options.cpp submodules preinstall
|
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++
|
cc -Wall -O -std=c++20 src/main.cpp src/options.cpp -o bin/rvz-convert -lstdc++
|
||||||
|
|
||||||
|
|
||||||
submodules:
|
submodules:
|
||||||
git submodule update --init --recursive --depth=1
|
git submodule update --init --recursive --depth=1
|
||||||
cmake -S lib/dolphin -B lib/dolphin/cmake-build
|
cmake -S lib/dolphin -B lib/dolphin/cmake-build
|
||||||
make -C lib/dolphin/cmake-build dolphin-tool
|
make -C lib/dolphin/cmake-build dolphin-tool
|
||||||
make -C lib/wiimms-iso-tools/project
|
make -C lib/wiimms-iso-tools/project
|
||||||
|
|
||||||
preinstall: submodules
|
preinstall:
|
||||||
cp lib/wiimms-iso-tools/project/bin/wit bin/
|
cp lib/wiimms-iso-tools/project/bin/wit bin/
|
||||||
cp lib/dolphin/cmake-build/Binaries/dolphin-tool bin/
|
cp lib/dolphin/cmake-build/Binaries/dolphin-tool bin/
|
||||||
|
|
||||||
|
@ -20,13 +20,9 @@ Please use after installing to PATH (`sudo make install`)
|
|||||||
|
|
||||||
### Dependencies:
|
### 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 Base
|
||||||
- Qt6 SVG
|
- Qt6 SVG
|
||||||
- Qt6 qtbase private libraries
|
- Qt6 qtbase private libraries
|
||||||
- Working compiler toolchain (build-essential)
|
- Working compiler toolchain (build-essential)
|
||||||
- GNU Make
|
- GNU Make
|
||||||
- CMake
|
- CMake
|
||||||
- Xi
|
|
||||||
- LibXRandr
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#define VERSION "v1.0.0-rc2"
|
#define VERSION "v1.0.0-rc1"
|
||||||
|
|
||||||
void version() {
|
void version() {
|
||||||
std::cout << "rvz-convert " << VERSION << std::endl;
|
std::cout << "rvz-convert " << VERSION << std::endl;
|
||||||
@ -11,7 +11,7 @@ void version() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void help() {
|
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 << "Options:\n\t-h --help\tDisplay this message" << std::endl;
|
||||||
std::cout << "\t-v --version\tDisplay version information" << std::endl;
|
std::cout << "\t-v --version\tDisplay version information" << std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user