Skip to content

Commit a497e76

Browse files
committed
PROJECT: fixed up gitignore
1 parent 38ff3a1 commit a497e76

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

.gitignore

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ ipch/
55
Win32/
66
x64/
77
release/
8+
build/
9+
debug/
810
*XE Results*/
911

1012
#global filetypes to ignore
@@ -23,6 +25,10 @@ release/
2325
*.dll
2426
*.exe
2527
*.pro.user.*
28+
*.orig
29+
cov*
30+
*.pdb
31+
ui_*
2632

2733
#project to ignore
2834
todo_bridge.txt
@@ -45,6 +51,9 @@ x64_dbg_gui/Project/GeneratedFiles/
4551
x64_dbg_gui/Project/release/
4652
x64_dbg_gui/Project/Win32/
4753
x64_dbg_gui/Project/x64/
54+
x64_dbg_gui/Project/Makefile
55+
x64_dbg_gui/Project/Makefile.Debug
56+
x64_dbg_gui/Project/Makefile.Release
4857
x64_dbg_gui/Project/Src/Bridge/libx32_bridge.a
4958
x64_dbg_gui/Project/Src/Bridge/libx64_bridge.a
5059
x64_dbg_gui/Project/Src/Bridge/x32_bridge.lib
@@ -55,12 +64,4 @@ RCa*
5564

5665
#exceptions
5766
!/AStyleWhore.exe
58-
!/AStyle.dll
59-
*.orig
60-
cov*
61-
debug/
62-
vc100.pdb
63-
ui_*
64-
x64_dbg_gui/Project/Makefile
65-
x64_dbg_gui/Project/Makefile.Debug
66-
x64_dbg_gui/Project/Makefile.Release
67+
!/AStyle.dll

build.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@echo off
2+
coverity_setenv.bat
3+
4+
echo Building DBG...
5+
devenv /Rebuild "Release|x64" x64_dbg.sln
6+
7+
echo Building GUI...
8+
mkdir build
9+
cd build
10+
qmake ..\x64_dbg_gui\Project\x64_dbg.pro CONFIG+=release
11+
jom

0 commit comments

Comments
 (0)