mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-25 14:17:00 +01:00
c41bc634a1
* fiix bug when writing supercluster * add macros for nand attributes * adding another example program for creating nand.bin and adding wads. it SEEMS to work as expected, but still, use it with EXTREME CAUTION * changed default NUS_Cache path in NUS downloader to parent directly so the 2 example programs can share the same cache * added "-all" argument for the nandBinchecker git-svn-id: http://wiiqt.googlecode.com/svn/trunk@26 389f4c8b-5dfe-645f-db0e-df882bc27289
50 lines
1.1 KiB
Prolog
50 lines
1.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-12-02T23:30:12
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui\
|
|
network
|
|
|
|
TARGET = ohneschwanzenegger
|
|
TEMPLATE = app
|
|
DEFINES += NAND_BIN_CAN_WRITE
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
../WiiQt/tools.cpp \
|
|
../WiiQt/sharedcontentmap.cpp \
|
|
../WiiQt/tiktmd.cpp \
|
|
../WiiQt/nusdownloader.cpp \
|
|
../WiiQt/uidmap.cpp \
|
|
../WiiQt/nanddump.cpp \
|
|
../WiiQt/settingtxtdialog.cpp \
|
|
../WiiQt/wad.cpp \
|
|
../WiiQt/aes.c \
|
|
../WiiQt/sha1.c \
|
|
newnandbin.cpp \
|
|
../WiiQt/nandbin.cpp \
|
|
../WiiQt/nandspare.cpp\
|
|
../WiiQt/blocks0to7.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
../WiiQt/tools.h \
|
|
../WiiQt/uidmap.h \
|
|
../WiiQt/sharedcontentmap.h \
|
|
../WiiQt/tiktmd.h \
|
|
../WiiQt/nusdownloader.h \
|
|
../WiiQt/uidmap.h \
|
|
../WiiQt/nanddump.h \
|
|
../WiiQt/settingtxtdialog.h \
|
|
../WiiQt/wad.h \
|
|
newnandbin.h \
|
|
../WiiQt/nandbin.h \
|
|
../WiiQt/nandspare.h\
|
|
../WiiQt/blocks0to7.h
|
|
|
|
FORMS += mainwindow.ui \
|
|
../WiiQt/settingtxtdialog.ui \
|
|
newnandbin.ui
|