1
0
Fork 0

PROJECT: fixed up gitignore

This commit is contained in:
Mr. eXoDia 2014-09-02 04:38:47 +02:00
parent 38ff3a1393
commit a497e7693e
2 changed files with 21 additions and 9 deletions

19
.gitignore vendored
View File

@ -5,6 +5,8 @@ ipch/
Win32/
x64/
release/
build/
debug/
*XE Results*/
#global filetypes to ignore
@ -23,6 +25,10 @@ release/
*.dll
*.exe
*.pro.user.*
*.orig
cov*
*.pdb
ui_*
#project to ignore
todo_bridge.txt
@ -45,6 +51,9 @@ x64_dbg_gui/Project/GeneratedFiles/
x64_dbg_gui/Project/release/
x64_dbg_gui/Project/Win32/
x64_dbg_gui/Project/x64/
x64_dbg_gui/Project/Makefile
x64_dbg_gui/Project/Makefile.Debug
x64_dbg_gui/Project/Makefile.Release
x64_dbg_gui/Project/Src/Bridge/libx32_bridge.a
x64_dbg_gui/Project/Src/Bridge/libx64_bridge.a
x64_dbg_gui/Project/Src/Bridge/x32_bridge.lib
@ -55,12 +64,4 @@ RCa*
#exceptions
!/AStyleWhore.exe
!/AStyle.dll
*.orig
cov*
debug/
vc100.pdb
ui_*
x64_dbg_gui/Project/Makefile
x64_dbg_gui/Project/Makefile.Debug
x64_dbg_gui/Project/Makefile.Release
!/AStyle.dll

11
build.bat Normal file
View File

@ -0,0 +1,11 @@
@echo off
coverity_setenv.bat
echo Building DBG...
devenv /Rebuild "Release|x64" x64_dbg.sln
echo Building GUI...
mkdir build
cd build
qmake ..\x64_dbg_gui\Project\x64_dbg.pro CONFIG+=release
jom