Skip to content

Commit

Permalink
Add .gitignore
Browse files Browse the repository at this point in the history
Change-Id: I6e22ef8fa4f906e3e2fd0803b2cb2d8b8334d37a
Reviewed-by: Mårten Nordheim <[email protected]>
  • Loading branch information
msvetkin committed Dec 20, 2018
1 parent 02b15fd commit f81e7c8
Showing 1 changed file with 159 additions and 0 deletions.
159 changes: 159 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
# This file is used to ignore files which are generated in the Qt build system
# ----------------------------------------------------------------------------

# Specific files/paths

# qmake/configure stuff
/.qmake.cache
/.qmake.stash

/mkspecs/modules/qt_*.pri
/mkspecs/modules-inst/

/include/

/lib/*
!/lib/README

/doc/*.qch
/doc/activeqt
/doc/qdoc
/doc/qmake
/doc/qt*/*

/examples/*/*/*
!/examples/*/*/*[.]*
!/examples/*/*/README
!/examples/*/doc/*
!/examples/*/doc/*/*

/translations/*.qm
/translations/*_en.ts
/translations/*_untranslated.ts

# Unit tests libs/plugins/data
/tests/auto/cmake/build/

QObject.log
tst_*
!tst_*.*
tst_*.log
tst_*.debug
tst_*~

# Generic directories
.metadata/
.pc/
debug/
release/
tmp/
tmp-debug/
tmp-debug-shared/
tmp-release/
tmp-release-shared/
qtc-qmldump/
qtc-qmldbg/
*.app/
*.d/

# Generic files
.#*
.com.apple.timemachine.supported
.DS_Store
callgrind.out.*
core
Makefile*
!/qmake/Makefile.win32*
!/qmake/Makefile.unix
pcviewer.cfg
tags
*~
*.a
*.la
*.core
*.dll
*.exe
*.dylib
*.gcov
*.gcda
*.gcno
*.lib
!Info.plist.lib
*.o
*.obj
*.orig
*.swp
*.rej
*.so
*.so.*
*.pbxuser
*.mode1
*.mode1v3
*_resource.rc
*.*#
*.debug

# xemacs temporary files
*.flc

# Vim temporary files
.*.swp

# Visual Studio generated files
*.ib_pdb_index
*.idb
*.ilk
*.pdb
*.sln
*.suo
*.ncb
*.vcxproj
*.vcxproj.filters
*.vcxproj.user
*.exe.embed.manifest
*.exe_manifest.rc
*.exe_manifest.res
*.appxmanifest
.qmake.winrt_uuid_*

# INTEGRITY generated files
*.ael
*.dla
*.dnm
*.dep
*.map

# Precompiled headers
*.gch
*.pchi
*.pchi.cpp
*_pch.obj
*_pch.pch

# Qt-specific files
codeattributions.qdoc
moc_*.cpp
qrc_*.cpp
ui_*.h
*.moc
*.prl
*.pro.user*
*.qmlproject.user*
*.rcc

# Generated by qt_module.prf
*.version
*.version.in

# Generated by qtPrepareTool()
wrapper.sh
wrapper.bat
*_wrapper.sh
*_wrapper.bat

# Generated by dbusxml2cpp
*_interface.*
*_adaptor.*

# Generated by qt.prf
*_plugin_import.cpp

0 comments on commit f81e7c8

Please sign in to comment.