General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.3 KiB

  1. {
  2. "clang.cflags": [
  3. "-std=c11",
  4. "-I${workspaceRoot}/include"
  5. ],
  6. "clang.cxxflags": [
  7. "-std=c++2a",
  8. "-Wall",
  9. "-pedantic",
  10. "-I${workspaceRoot}/include"
  11. ],
  12. "files.associations": {
  13. "optional": "cpp",
  14. "system_error": "cpp",
  15. "istream": "cpp",
  16. "ostream": "cpp",
  17. "ratio": "cpp",
  18. "array": "cpp",
  19. "functional": "cpp",
  20. "tuple": "cpp",
  21. "type_traits": "cpp",
  22. "utility": "cpp",
  23. "atomic": "cpp",
  24. "bit": "cpp",
  25. "*.tcc": "cpp",
  26. "bitset": "cpp",
  27. "cctype": "cpp",
  28. "chrono": "cpp",
  29. "clocale": "cpp",
  30. "cmath": "cpp",
  31. "compare": "cpp",
  32. "concepts": "cpp",
  33. "cstdarg": "cpp",
  34. "cstddef": "cpp",
  35. "cstdint": "cpp",
  36. "cstdio": "cpp",
  37. "cstdlib": "cpp",
  38. "ctime": "cpp",
  39. "cwchar": "cpp",
  40. "cwctype": "cpp",
  41. "deque": "cpp",
  42. "set": "cpp",
  43. "unordered_map": "cpp",
  44. "vector": "cpp",
  45. "exception": "cpp",
  46. "algorithm": "cpp",
  47. "iterator": "cpp",
  48. "memory": "cpp",
  49. "memory_resource": "cpp",
  50. "numeric": "cpp",
  51. "random": "cpp",
  52. "string": "cpp",
  53. "string_view": "cpp",
  54. "fstream": "cpp",
  55. "initializer_list": "cpp",
  56. "iomanip": "cpp",
  57. "iosfwd": "cpp",
  58. "iostream": "cpp",
  59. "limits": "cpp",
  60. "new": "cpp",
  61. "numbers": "cpp",
  62. "ranges": "cpp",
  63. "sstream": "cpp",
  64. "stdexcept": "cpp",
  65. "stop_token": "cpp",
  66. "streambuf": "cpp",
  67. "thread": "cpp",
  68. "typeinfo": "cpp"
  69. }
  70. }