mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
add vscode support
This commit is contained in:
parent
a8e11be069
commit
da9509109a
63
.vscode/c_cpp_properties.json
vendored
Normal file
63
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"env": {
|
||||
"POCO_BASE": "${workspaceFolder}",
|
||||
"pocoIncludePath": [
|
||||
"${POCO_BASE}/CppUnit/include",
|
||||
"${POCO_BASE}/Foundation/include",
|
||||
"${POCO_BASE}/Encodings/include",
|
||||
"${POCO_BASE}/XML/include",
|
||||
"${POCO_BASE}/JSON/include",
|
||||
"${POCO_BASE}/Util/include",
|
||||
"${POCO_BASE}/Net/include",
|
||||
"${POCO_BASE}/Crypto/include",
|
||||
"${POCO_BASE}/NetSSL_OpenSSL/include",
|
||||
"${POCO_BASE}/Data/include",
|
||||
"${POCO_BASE}/Data/SQLite/include",
|
||||
"${POCO_BASE}/Data/ODBC/include",
|
||||
"${POCO_BASE}/Data/MySQL/include",
|
||||
"${POCO_BASE}/Data/PostgreSQL/include",
|
||||
"${POCO_BASE}/Zip/include",
|
||||
"${POCO_BASE}/CppParser/include",
|
||||
"${POCO_BASE}/JWT/include",
|
||||
"${POCO_BASE}/Redis/include",
|
||||
"${POCO_BASE}/MongoDB/include",
|
||||
"${POCO_BASE}/ApacheConnector/include"
|
||||
]
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Mac",
|
||||
"intelliSenseMode": "clang-x64",
|
||||
"includePath": ["${pocoIncludePath}"],
|
||||
"macFrameworkPath": ["/System/Library/Frameworks"],
|
||||
"defines": [],
|
||||
"forcedInclude": [],
|
||||
"compilerPath": "/usr/bin/clang",
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "c++14",
|
||||
"compileCommands": "",
|
||||
"browse": {
|
||||
"path": ["${workspaceFolder}"],
|
||||
"limitSymbolsToIncludedHeaders": true,
|
||||
"databaseFilename": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Linux",
|
||||
"intelliSenseMode": "gcc-x64",
|
||||
"includePath": ["${pocoIncludePath}"],
|
||||
"defines": [],
|
||||
"forcedInclude": [],
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "c++14",
|
||||
"compileCommands": "",
|
||||
"browse": {
|
||||
"path": ["${workspaceFolder}"],
|
||||
"limitSymbolsToIncludedHeaders": true,
|
||||
"databaseFilename": ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
91
.vscode/settings.json
vendored
Normal file
91
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
{
|
||||
"editor.insertSpaces": false,
|
||||
"editor.tabSize": 4,
|
||||
"files.associations": {
|
||||
"*.bndlspec": "xml",
|
||||
"__bit_reference": "cpp",
|
||||
"__config": "cpp",
|
||||
"__debug": "cpp",
|
||||
"__errc": "cpp",
|
||||
"__functional_base": "cpp",
|
||||
"__hash_table": "cpp",
|
||||
"__locale": "cpp",
|
||||
"__mutex_base": "cpp",
|
||||
"__node_handle": "cpp",
|
||||
"__nullptr": "cpp",
|
||||
"__split_buffer": "cpp",
|
||||
"__string": "cpp",
|
||||
"__threading_support": "cpp",
|
||||
"__tree": "cpp",
|
||||
"__tuple": "cpp",
|
||||
"algorithm": "cpp",
|
||||
"array": "cpp",
|
||||
"atomic": "cpp",
|
||||
"bit": "cpp",
|
||||
"bitset": "cpp",
|
||||
"cctype": "cpp",
|
||||
"chrono": "cpp",
|
||||
"cinttypes": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"complex": "cpp",
|
||||
"csignal": "cpp",
|
||||
"cstdarg": "cpp",
|
||||
"cstddef": "cpp",
|
||||
"cstdint": "cpp",
|
||||
"cstdio": "cpp",
|
||||
"cstdlib": "cpp",
|
||||
"cstring": "cpp",
|
||||
"ctime": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"deque": "cpp",
|
||||
"exception": "cpp",
|
||||
"forward_list": "cpp",
|
||||
"fstream": "cpp",
|
||||
"functional": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iomanip": "cpp",
|
||||
"ios": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"iostream": "cpp",
|
||||
"istream": "cpp",
|
||||
"iterator": "cpp",
|
||||
"limits": "cpp",
|
||||
"list": "cpp",
|
||||
"locale": "cpp",
|
||||
"map": "cpp",
|
||||
"memory": "cpp",
|
||||
"mutex": "cpp",
|
||||
"new": "cpp",
|
||||
"numeric": "cpp",
|
||||
"optional": "cpp",
|
||||
"ostream": "cpp",
|
||||
"queue": "cpp",
|
||||
"ratio": "cpp",
|
||||
"regex": "cpp",
|
||||
"set": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stack": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"string": "cpp",
|
||||
"string_view": "cpp",
|
||||
"system_error": "cpp",
|
||||
"thread": "cpp",
|
||||
"tuple": "cpp",
|
||||
"type_traits": "cpp",
|
||||
"typeindex": "cpp",
|
||||
"typeinfo": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"unordered_set": "cpp",
|
||||
"utility": "cpp",
|
||||
"vector": "cpp"
|
||||
},
|
||||
"files.exclude": {
|
||||
"**/.dep": true,
|
||||
"**/bin": true,
|
||||
"**/obj": true
|
||||
},
|
||||
"git.ignoreLimitWarning": true
|
||||
}
|
Loading…
Reference in New Issue
Block a user