mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-03-28 14:56:19 +01:00
misc: add vscode project settings file
- specifies some include paths - enforces LF eol - encourages clang-format use - adds a comment regarding the IPC task Note: currently GNU/Linux-specific Change-Id: Ib208aca33026bf1c15a3ef18020805ceb20aa55f
This commit is contained in:
parent
690f2dd85c
commit
f39afdac4c
2 changed files with 18 additions and 0 deletions
3
.vscode/launch.json
vendored
3
.vscode/launch.json
vendored
|
@ -65,6 +65,9 @@
|
|||
],
|
||||
"compounds": [
|
||||
{
|
||||
// Using this configuration will require manually reconfiguring the project using
|
||||
// build.py --no-libwrap, otherwise the daemon executable will not be built and the
|
||||
// client will not be built with ENABLE_LIBWRAP=False.
|
||||
"name": "Jami-Client-IPC",
|
||||
"configurations": [
|
||||
"Jami-Daemon-Debug",
|
||||
|
|
15
.vscode/settings.json
vendored
Normal file
15
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"C_Cpp.default.includePath": [
|
||||
"${default}",
|
||||
"${workspaceFolder}/**",
|
||||
"/usr/lib/libqt-jami/include/**",
|
||||
"/usr/lib64/qt-jami/include/**",
|
||||
],
|
||||
"C_Cpp.default.cppStandard": "c++17",
|
||||
"C_Cpp.default.cStandard": "c11",
|
||||
"cmake.configureOnOpen": true,
|
||||
"editor.formatOnSave": true,
|
||||
"editor.defaultFormatter": "xaver.clang-format",
|
||||
"files.eol": "\n",
|
||||
"cSpell.enabled": false,
|
||||
}
|
Loading…
Add table
Reference in a new issue