diff --git a/README.md b/README.md index 59e23ca..6cdf352 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # windows-cpp -Portable C++ Compiler for Windows +This is C++ Compiler Installation using [llvm-clang](https://clang.llvm.org/). + +| Exe | Description | Releases | +| -------- | ------- | ------- | +| | Download the latest version | [Download](https://github.com/NxRoot/windows-cpp/releases/download/Latest/Windows.C++.Compiler.Setup.exe) | + +# How to Use +Run this in the terminal to build a cpp file and generate an executable: +```powershell +clang++ main.cpp -o .\\output.exe +``` +For a more advanced usage check LLVM [documentation](https://clang.llvm.org/docs/UsersManual.html#command-line-options).