mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-21 16:49:19 +01:00
Remove svnrev everywhere
This commit is contained in:
parent
5707b9c726
commit
39df8e8efc
52
.gitignore
vendored
Normal file
52
.gitignore
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
# C++ objects and libs
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.a
|
||||
*.la
|
||||
*.lai
|
||||
*.so
|
||||
*.so.*
|
||||
*.dll
|
||||
*.dylib
|
||||
|
||||
# Qt-es
|
||||
object_script.*.Release
|
||||
object_script.*.Debug
|
||||
*_plugin_import.cpp
|
||||
/.qmake.cache
|
||||
/.qmake.stash
|
||||
*.pro.user
|
||||
*.pro.user.*
|
||||
*.qbs.user
|
||||
*.qbs.user.*
|
||||
*.moc
|
||||
moc_*.cpp
|
||||
moc_*.h
|
||||
qrc_*.cpp
|
||||
ui_*.h
|
||||
*.qmlc
|
||||
*.jsc
|
||||
Makefile*
|
||||
*build-*
|
||||
*.qm
|
||||
*.prl
|
||||
|
||||
# Qt unit tests
|
||||
target_wrapper.*
|
||||
|
||||
# QtCreator
|
||||
*.autosave
|
||||
|
||||
# QtCreator Qml
|
||||
*.qmlproject.user
|
||||
*.qmlproject.user.*
|
||||
|
||||
# QtCreator CMake
|
||||
CMakeLists.txt.user*
|
||||
|
||||
# QtCreator 4.8< compilation database
|
||||
compile_commands.json
|
||||
|
||||
# QtCreator local machine specific files for imported projects
|
||||
*creator.user*
|
@ -1,6 +1,3 @@
|
||||
|
||||
#include "svnrev.h"
|
||||
|
||||
#include "../WiiQt/includes.h"
|
||||
#include "../WiiQt/nandbin.h"
|
||||
#include "../WiiQt/sharedcontentmap.h"
|
||||
@ -1323,7 +1320,6 @@ int main( int argc, char *argv[] )
|
||||
|
||||
qCritical() << "** nandBinCheck : Wii nand info tool **";
|
||||
qCritical() << " from giantpune";
|
||||
qCritical() << " svn r:" << qPrintable( CleanSvnStr( SVN_REV_STR ) );
|
||||
qCritical() << " built:" << __DATE__ << __TIME__;
|
||||
|
||||
if( args.contains( "-about", Qt::CaseInsensitive ) )
|
||||
|
@ -43,13 +43,3 @@ HEADERS += ../WiiQt/tiktmd.h \
|
||||
|
||||
FORMS += \
|
||||
../WiiQt/settingtxtdialog.ui
|
||||
|
||||
# create new svnrev.h
|
||||
unix {
|
||||
system( chmod 755 ../tools/makesvnrev.sh )
|
||||
system( ../tools/makesvnrev.sh )
|
||||
}
|
||||
|
||||
win32 {
|
||||
system( "..\\tools\\SubWCRev.exe" "." "..\\tools\\svnrev_template.h" ".\\svnrev.h" )
|
||||
}
|
||||
|
@ -28,13 +28,3 @@ FORMS += nandwindow.ui \
|
||||
|
||||
RESOURCES += \
|
||||
rc.qrc
|
||||
|
||||
# create new svnrev.h
|
||||
unix {
|
||||
system( chmod 755 ../tools/makesvnrev.sh )
|
||||
system( ../tools/makesvnrev.sh )
|
||||
}
|
||||
|
||||
win32 {
|
||||
system( "..\\tools\\SubWCRev.exe" "." "..\\tools\\svnrev_template.h" ".\\svnrev.h" )
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "nandwindow.h"
|
||||
#include "svnrev.h"
|
||||
#include "ui_nandwindow.h"
|
||||
#include "boot2infodialog.h"
|
||||
#include "../WiiQt/tools.h"
|
||||
@ -8,7 +7,7 @@ NandWindow::NandWindow( QWidget *parent ) : QMainWindow( parent ), ui( new Ui::N
|
||||
{
|
||||
ui->setupUi( this );
|
||||
ui->mainToolBar->setVisible( false );
|
||||
this->setWindowTitle( "NAND Extract r" + CleanSvnStr( SVN_REV_STR ) );
|
||||
this->setWindowTitle( "NAND Extract" );
|
||||
|
||||
//setup the block map
|
||||
SetUpBlockMap();
|
||||
|
@ -39,14 +39,3 @@ FORMS += mainwindow.ui \
|
||||
../WiiQt/settingtxtdialog.ui \
|
||||
newnandbin.ui
|
||||
RESOURCES += rc.qrc
|
||||
|
||||
|
||||
# create new svnrev.h
|
||||
unix {
|
||||
system( chmod 755 ../tools/makesvnrev.sh )
|
||||
system( ../tools/makesvnrev.sh )
|
||||
}
|
||||
|
||||
win32 {
|
||||
system( "..\\tools\\SubWCRev.exe" "." "..\\tools\\svnrev_template.h" ".\\svnrev.h" )
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user