mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
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.
37 lines
540 B
Plaintext
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
|