Add editor config files

This commit is contained in:
Paul Reeves 2023-01-23 15:30:46 +01:00
parent 39262f514b
commit 0c9620f8d2
3 changed files with 31 additions and 0 deletions

9
.editorconfig Normal file
View File

@ -0,0 +1,9 @@
root = true
[*]
indent_style = space
indent_size = 2
[*.sql]
indent_style = space
indent_size = 2

3
.kateconfig Normal file
View File

@ -0,0 +1,3 @@
# global editor options
replace-tabs on;
replace-tabs-save on;

19
.kateproject Normal file
View File

@ -0,0 +1,19 @@
{
"name": "MY_FIRST_UDR_KIT-Release@build",
"directory": "/srv/code/firebird/MyFirstUDRKit",
"files": [ { "git": 1 } ],
"build": {
"directory": "/srv/code/firebird/MyFirstUDRKit/build",
"default_target": "all",
"clean_target": "clean",
"build": "/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 all",
"clean": "/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 clean",
"quick": "/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 install",
"targets":[
{"name":"all", "build_cmd":"/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 all"}
,{"name":"clean", "build_cmd":"/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 clean"}
,{"name":"rebuild_cache", "build_cmd":"/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 rebuild_cache"}
,{"name":"MyFirstUDRKit", "build_cmd":"/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 MyFirstUDRKit"}
,{"name":"MyFirstUDRKit/fast", "build_cmd":"/usr/bin/gmake -C \"/srv/code/firebird/MyFirstUDRKit/build\" -j12 MyFirstUDRKit/fast"}
] }
}