├── .gitignore ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── include ├── EnvVarUpdate.nsh ├── PathUpdate.nsh ├── Sections.nsh └── WordFunc.nsh ├── plugins └── nsisunz.dll ├── prerequisites ├── THIRD-PARTY.txt └── download-prerequisites.ps1 ├── setup.md ├── source ├── HeaderImage_Bitmap.bmp ├── WelcomeScreen.bmp ├── install.nsi ├── license.txt ├── mbed-enabled-logo.bmp ├── p.ico └── pip_install_mbed.bat └── test └── test.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /include/EnvVarUpdate.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/include/EnvVarUpdate.nsh -------------------------------------------------------------------------------- /include/PathUpdate.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/include/PathUpdate.nsh -------------------------------------------------------------------------------- /include/Sections.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/include/Sections.nsh -------------------------------------------------------------------------------- /include/WordFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/include/WordFunc.nsh -------------------------------------------------------------------------------- /plugins/nsisunz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/plugins/nsisunz.dll -------------------------------------------------------------------------------- /prerequisites/THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/prerequisites/THIRD-PARTY.txt -------------------------------------------------------------------------------- /prerequisites/download-prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/prerequisites/download-prerequisites.ps1 -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/setup.md -------------------------------------------------------------------------------- /source/HeaderImage_Bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/HeaderImage_Bitmap.bmp -------------------------------------------------------------------------------- /source/WelcomeScreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/WelcomeScreen.bmp -------------------------------------------------------------------------------- /source/install.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/install.nsi -------------------------------------------------------------------------------- /source/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/license.txt -------------------------------------------------------------------------------- /source/mbed-enabled-logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/mbed-enabled-logo.bmp -------------------------------------------------------------------------------- /source/p.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/p.ico -------------------------------------------------------------------------------- /source/pip_install_mbed.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/source/pip_install_mbed.bat -------------------------------------------------------------------------------- /test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli-windows-installer/HEAD/test/test.md --------------------------------------------------------------------------------