├── LICENSE ├── README.md ├── clang-cl-msvc.cmake ├── dumpbin ├── example ├── .gitignore ├── CMakeLists.txt ├── Makefile └── hello-world.cpp ├── llvm-mt-wrapper ├── llvm-rc-wrapper ├── msvc └── .gitkeep ├── powershell └── winsdk └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/README.md -------------------------------------------------------------------------------- /clang-cl-msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/clang-cl-msvc.cmake -------------------------------------------------------------------------------- /dumpbin: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "${0}: ${@}" 4 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/hello-world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/example/hello-world.cpp -------------------------------------------------------------------------------- /llvm-mt-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/llvm-mt-wrapper -------------------------------------------------------------------------------- /llvm-rc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/clang-msvc-sdk/HEAD/llvm-rc-wrapper -------------------------------------------------------------------------------- /msvc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /powershell: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "${0}: ${@}" 4 | -------------------------------------------------------------------------------- /winsdk/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------