Files
Seele/.vscode/settings.json
T

146 lines
3.7 KiB
JSON
Raw Normal View History

2020-03-24 21:05:32 +01:00
{
"telemetry.enableTelemetry": false,
"cmake.buildDirectory": "${workspaceFolder}/bin/${buildType}",
"files.associations": {
2020-04-01 02:17:49 +02:00
"*.h": "cpp",
2020-09-19 14:36:50 +02:00
"*.ush": "hlsl",
2021-09-23 10:10:39 +02:00
"*.pl": "prolog",
2020-04-01 02:17:49 +02:00
"xstring": "cpp",
"list": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xmemory": "cpp",
"xtree": "cpp",
2020-04-12 15:47:19 +02:00
"type_traits": "cpp",
"vector": "cpp",
"*.rh": "cpp",
2020-05-05 01:51:13 +02:00
"memory": "cpp",
"*.ipp": "cpp",
"iostream": "cpp",
2020-06-02 11:46:18 +02:00
"initializer_list": "cpp",
"algorithm": "cpp",
"array": "cpp",
"atomic": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"forward_list": "cpp",
"fstream": "cpp",
"functional": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"map": "cpp",
"mutex": "cpp",
"new": "cpp",
"numeric": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"set": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"utility": "cpp",
"valarray": "cpp",
"xfacet": "cpp",
"xlocale": "cpp",
"xlocinfo": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xstddef": "cpp",
"xtr1common": "cpp",
"xutility": "cpp",
"filesystem": "cpp",
"bitset": "cpp",
"complex": "cpp",
"csignal": "cpp",
"deque": "cpp",
"locale": "cpp",
"optional": "cpp",
"typeindex": "cpp",
"variant": "cpp",
"xlocbuf": "cpp",
"xlocmes": "cpp",
"codecvt": "cpp",
"regex": "cpp",
"strstream": "cpp",
"resumable": "cpp",
"future": "cpp",
"cstdarg": "cpp",
"cwctype": "cpp",
"queue": "cpp",
"random": "cpp",
"shared_mutex": "cpp",
"unordered_set": "cpp",
"csetjmp": "cpp",
2020-09-19 14:36:50 +02:00
"memory_resource": "cpp",
"*.inc": "cpp",
"any": "cpp",
"bit": "cpp",
"cfenv": "cpp",
"cinttypes": "cpp",
"compare": "cpp",
"execution": "cpp",
"hash_map": "cpp",
"hash_set": "cpp",
"scoped_allocator": "cpp",
2021-04-01 16:40:14 +02:00
"stack": "cpp",
"coroutine": "cpp",
2021-04-13 23:09:16 +02:00
"*.tcc": "cpp",
2021-04-25 23:43:40 +02:00
"stop_token": "cpp",
2021-09-23 10:10:39 +02:00
"span": "cpp",
"charconv": "cpp",
"format": "cpp",
2021-10-15 23:12:29 +02:00
"semaphore": "cpp",
"netfwd": "cpp",
"string_view": "cpp",
"rope": "cpp",
"slist": "cpp",
2021-11-19 15:08:56 +01:00
"numbers": "cpp",
"barrier": "cpp",
"latch": "cpp",
"ranges": "cpp",
"source_location": "cpp",
"syncstream": "cpp"
2020-04-12 15:47:19 +02:00
},
2020-06-02 11:46:18 +02:00
"cmake.skipConfigureIfCachePresent": false,
"cmake.configureArgs": [
"-Wno-dev"
2020-10-03 11:00:10 +02:00
],
2021-07-11 22:23:01 +02:00
"files.watcherExclude": {
2022-04-13 13:01:35 +02:00
"**/target": true,
"bin/**": true,
"external/**": true
2021-09-23 10:10:39 +02:00
},
2021-10-19 23:04:38 +02:00
"git.ignoreSubmodules": true,
2021-11-05 00:01:12 +01:00
"cmake.configureOnOpen": true,
2023-01-29 18:58:59 +01:00
"cmake.parallelJobs": 0,
"C_Cpp.files.exclude": {
"**/.vs": true,
"**/.vscode": true,
"**/bin": true,
"**/external": true,
"**/res": true,
},
2020-03-24 21:05:32 +01:00
}