From 0c9620f8d2f3eefdc0fb617dae88ccd3d6d46169 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Mon, 23 Jan 2023 15:30:46 +0100 Subject: [PATCH] Add editor config files --- .editorconfig | 9 +++++++++ .kateconfig | 3 +++ .kateproject | 19 +++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 .editorconfig create mode 100644 .kateconfig create mode 100644 .kateproject diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..224c325 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +indent_style = space +indent_size = 2 + +[*.sql] +indent_style = space +indent_size = 2 diff --git a/.kateconfig b/.kateconfig new file mode 100644 index 0000000..a24e0c4 --- /dev/null +++ b/.kateconfig @@ -0,0 +1,3 @@ +# global editor options +replace-tabs on; +replace-tabs-save on; diff --git a/.kateproject b/.kateproject new file mode 100644 index 0000000..757e68d --- /dev/null +++ b/.kateproject @@ -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"} + ] } +}