mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-05 17:15:06 +01:00
7e64a9f6b5
* adding stuff for writing a supercluster with updates information, using correct rotation * fixed a few more bugs in this class forgot about * move the "fakesign checker" stuff to a more appropriate place * add a couple small functions to TMD, ticket, shardeMap * add a new "demo" program/project nandBinCheck. it does lots of useful integrety checks on a nand.bin that will be needed when starting to actually write these things
36 lines
756 B
Prolog
36 lines
756 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-12-17T16:22:53
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
#QT += core\
|
|
# gui
|
|
|
|
TARGET = nandBinCheck
|
|
#CONFIG += console
|
|
#CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
../WiiQt/blocks0to7.cpp \
|
|
../WiiQt/tiktmd.cpp \
|
|
../WiiQt/nandbin.cpp \
|
|
../WiiQt/tools.cpp \
|
|
../WiiQt/savebanner.cpp \
|
|
../WiiQt/aes.c \
|
|
../WiiQt/sha1.c \
|
|
../WiiQt/uidmap.cpp \
|
|
../WiiQt/sharedcontentmap.cpp \
|
|
../WiiQt/nandspare.cpp
|
|
|
|
HEADERS += ../WiiQt/tiktmd.h \
|
|
../WiiQt/nandbin.h \
|
|
../WiiQt/tools.h \
|
|
../WiiQt/blocks0to7.h \
|
|
../WiiQt/uidmap.h \
|
|
../WiiQt/sharedcontentmap.h \
|
|
../WiiQt/nandspare.h
|