Skip to content

Instantly share code, notes, and snippets.

@ScottTodd
Created May 21, 2020 23:15
Show Gist options
  • Save ScottTodd/f3825323c7162311665aff00ed055b27 to your computer and use it in GitHub Desktop.
Save ScottTodd/f3825323c7162311665aff00ed055b27 to your computer and use it in GitHub Desktop.
IREE Visual Studio Code workspace settings
{
"folders": [
{
"path": ".."
}
],
"settings": {
"cmake.cmakePath": "C:\\Program Files\\CMake\\bin\\cmake.exe",
"cmake.installPrefix": "",
"cmake.platform": "",
"cmake.toolset": "",
"cmake.buildDirectory": "${workspaceFolder}/../iree-build",
"cmake.configureOnOpen": false,
"cmake.copyCompileCommands": "",
"cmake.ctestPath": "",
"C_Cpp.default.includePath": [
"${default}",
"${workspaceFolder}/../iree-build",
],
"cmake.configureArgs": [
// "-DIREE_BUILD_COMPILER=OFF",
// "-DIREE_BUILD_SAMPLES=OFF",
// "-DIREE_ENABLE_LLVM=OFF",
// "-DCMAKE_BUILD_TYPE=RELEASE",
"-DIREE_ENABLE_RUNTIME_TRACING=ON",
],
"files.associations": {
"vector": "cpp",
"*.inc": "cpp",
"algorithm": "cpp",
"any": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"cfenv": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"cinttypes": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"complex": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"csetjmp": "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",
"execution": "cpp",
"filesystem": "cpp",
"forward_list": "cpp",
"fstream": "cpp",
"functional": "cpp",
"future": "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",
"random": "cpp",
"ratio": "cpp",
"regex": "cpp",
"scoped_allocator": "cpp",
"set": "cpp",
"shared_mutex": "cpp",
"sstream": "cpp",
"stack": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeindex": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"utility": "cpp",
"valarray": "cpp",
"variant": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp"
},
"search.exclude": {
"experimental/**": true,
"third_party/llvm-project/{clang,clang-tools-extra,compiler-rt,debuginfo-tests,libc,libclc,libcxx,libcxxabi,libunwind,lld,lldb,openmp,parallel-libs,polly,pstl}/**": true,
"third_party/llvm-project/llvm/{benchmarks,bindings,cmake,docs,examples,projects,resources,runtimes,test,tools,unittests,utils}}/**": true,
"third_party/swiftshader/**": true,
"third_party/tensorflow/**": true
},
"files.exclude": {
"experimental/**": true,
"third_party/llvm-project/{clang,clang-tools-extra,compiler-rt,debuginfo-tests,libc,libclc,libcxx,libcxxabi,libunwind,lld,lldb,openmp,parallel-libs,polly,pstl}/**": true,
"third_party/llvm-project/llvm/{benchmarks,bindings,cmake,docs,examples,projects,resources,runtimes,test,tools,unittests,utils}}/**": true,
"third_party/swiftshader/**": true,
"third_party/tensorflow/**": true,
"third_party/pybind11/**": true,
"third_party/sdl2/**": true,
"third_party/ruy/**": true,
"bazel-*": true,
"build-swiftshader": true,
"build-docs": true
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment