Files
sqlitebrowser/.gitignore
Martin Kleusberg cde2393539 Use QScintilla instead of own implementation of a code editor
This is a first rough implementation of QScintilla support as SQL text
editor.

It should work mostly and build fine with qmake as well as cmake. The
new code supports all the features of the old one plus adding a few
subtle improvements. The main point of this, however, is reducing the
code we have to maintain and making it easier to add new features to the
editor.
2015-04-23 19:51:54 +02:00

37 lines
540 B
Plaintext

Makefile
sqlitebrowser.pro.user
CMakeLists.txt.user
CMakeFiles
*.cmake
*.cxx_parameters
# ignore any build folders
build*/
# folder with temporary test data
testdata/
src/.ui/
src/sqlitebrowser
src/Makefile*
src/debug
src/release
src/gen_version.h
# ignore compiled translation files
src/translations/*.qm
# no one needs the txt file
src/grammar/sqlite3TokenTypes.txt
libs/*/Makefile*
libs/*/*/Makefile*
libs/*/debug/
libs/*/*/debug/
libs/*/release/
libs/*/*/release/
libs/*/*.a
libs/*/*/*.a
# Ignore .DS_Store files on OSX
.DS_Store