PROJECT: Fixing .gitignore
This commit is contained in:
parent
5c6a2efdf6
commit
772167b29e
|
@ -36,8 +36,6 @@ ui_*
|
||||||
*.aps
|
*.aps
|
||||||
*.pro.user
|
*.pro.user
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Intel performance guide
|
|
||||||
*.ipgset
|
*.ipgset
|
||||||
|
|
||||||
# Project to ignore
|
# Project to ignore
|
||||||
|
@ -46,18 +44,16 @@ help/output/
|
||||||
|
|
||||||
# Debugger files to ignore
|
# Debugger files to ignore
|
||||||
CppCheckResults.xml
|
CppCheckResults.xml
|
||||||
x64_dbg_dbg/ODbgScript.chm
|
src/dbg/ODbgScript.chm
|
||||||
x64_dbg_dbg/ODbgScript.chw
|
src/dbg/ODbgScript.chw
|
||||||
x64_dbg_dbg/CppCheckResults.xml
|
|
||||||
x64_dbg_dbg/.cccc/
|
|
||||||
x64_dbg_dbg/suggestions.txt
|
|
||||||
|
|
||||||
# For GUI
|
# GUI files
|
||||||
src/gui/build
|
src/gui/build
|
||||||
src/gui/Makefile*
|
src/gui/Makefile*
|
||||||
tools/
|
tools/
|
||||||
RCa*
|
RCa*
|
||||||
|
|
||||||
#exceptions
|
# Exceptions
|
||||||
!/AStyleWhore.exe
|
!/hooks/AStyleWhore.exe
|
||||||
!/AStyle.dll
|
!/hooks/AStyle.dll
|
||||||
|
!/bin/x64dbg_shell_remove.reg
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -42,8 +42,8 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
#DEFINES += QT_NO_DEBUG_OUTPUT
|
#DEFINES += QT_NO_DEBUG_OUTPUT
|
||||||
|
|
||||||
# Generate debug symbols in release mode
|
# Generate debug symbols in release mode
|
||||||
QMAKE_CFLAGS_RELEASE += -Zi #-O3 # C
|
QMAKE_CFLAGS_RELEASE += -Zi #-O3 # C?
|
||||||
QMAKE_CXXFLAGS_RELEASE += #-O3 # C++
|
#QMAKE_CXXFLAGS_RELEASE += -O3 # C++?
|
||||||
QMAKE_LFLAGS_RELEASE += /DEBUG # Linker
|
QMAKE_LFLAGS_RELEASE += /DEBUG # Linker
|
||||||
|
|
||||||
# Build as a library
|
# Build as a library
|
||||||
|
|
Loading…
Reference in New Issue