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